logo
RunComfy
  • ComfyUI
  • ТренерНовое
  • Модели
  • API
  • Цены
discord logo
МОДЕЛИ
Обзор
Все модели
БИБЛИОТЕКА
Генерации
API МОДЕЛЕЙ
Документация API
API-ключи
АККАУНТ
Использование

Qwen Image 2512 LoRA: Фотореалистичная генерация изображений по тексту с точной детализацией | Модели и API | RunComfy

qwen/qwen-image/qwen-image-2512/lora

Создавайте фотореалистичные изображения из текста с многоязычной визуализацией текста, мелкими деталями и стабильной оптимизацией LoRA для фотографий продуктов, маркетинговых визуальных эффектов и рабочих процессов творческого дизайна.

Содержание

1. Начало работы2. Аутентификация3. Справочник APIОтправить запросСтатус запросаПолучить результатыОтменить запрос4. Входные файлыРазмещённый файл (URL)5. СхемаСхема входаСхема выхода

1. Начало работы

Используйте API RunComfy для запуска qwen/qwen-image/qwen-image-2512/lora. Допустимые входы и выходы см. в схеме.

curl --request POST \
  --url https://model-api.runcomfy.net/v1/models/qwen/qwen-image/qwen-image-2512/lora \
  --header "Content-Type: application/json" \
  --header "Authorization: Bearer <token>" \
  --data '{
    "prompt": "A red-haired woman with voluminous, wavy hair stands in front of a densely packed wall of vibrant purple rhododendron flowers with rich green leaves. She is wearing round, pink-tinted reflective sunglasses that show a soft reflection of the floral environment. Her expression is confident and serene, her lips slightly parted. She wears a black spaghetti strap tank top and high-waisted, belted gray skirt. She holds up a blossoming flower with one hand, her skin fair with natural freckles. The lighting is natural and diffused, suggesting an overcast or shaded forest garden setting, resulting in soft shadows and rich, saturated colors. The image has a shallow depth of field, keeping the woman sharply in focus with slightly blurred background flowers. Captured from a medium-close angle at eye level, the mood is whimsical and modern, with a hint of vintage flair due to the color grading and styling. Style is cinematic, photorealistic, with high detail."
  }'

2. Аутентификация

Задайте для переменной окружения YOUR_API_TOKEN ваш API-ключ (управление в Профиль) и передавайте в каждом запросе Bearer-токен в заголовке Authorization : Authorization: Bearer $YOUR_API_TOKEN.

3. Справочник API

Отправить запрос

Отправьте асинхронную задачу генерации и сразу получите request_id и URL для статуса, результатов и отмены.

curl --request POST \
  --url https://model-api.runcomfy.net/v1/models/qwen/qwen-image/qwen-image-2512/lora \
  --header "Content-Type: application/json" \
  --header "Authorization: Bearer <token>" \
  --data '{
    "prompt": "A red-haired woman with voluminous, wavy hair stands in front of a densely packed wall of vibrant purple rhododendron flowers with rich green leaves. She is wearing round, pink-tinted reflective sunglasses that show a soft reflection of the floral environment. Her expression is confident and serene, her lips slightly parted. She wears a black spaghetti strap tank top and high-waisted, belted gray skirt. She holds up a blossoming flower with one hand, her skin fair with natural freckles. The lighting is natural and diffused, suggesting an overcast or shaded forest garden setting, resulting in soft shadows and rich, saturated colors. The image has a shallow depth of field, keeping the woman sharply in focus with slightly blurred background flowers. Captured from a medium-close angle at eye level, the mood is whimsical and modern, with a hint of vintage flair due to the color grading and styling. Style is cinematic, photorealistic, with high detail."
  }'

Статус запроса

Текущее состояние по request_id: «in_queue», «in_progress», «completed» или «cancelled».

curl --request GET \
  --url https://model-api.runcomfy.net/v1/requests/{request_id}/status \
  --header "Authorization: Bearer <token>"

Получить результаты

Финальные выходные данные и метаданные для request_id; если задача не завершена, в ответе — текущее состояние для дальнейшего опроса.

curl --request GET \
  --url https://model-api.runcomfy.net/v1/requests/{request_id}/result \
  --header "Authorization: Bearer <token>"

Отменить запрос

Отмена задачи в очереди по request_id; выполняющиеся задачи отменить нельзя.

curl --request POST \
  --url https://model-api.runcomfy.net/v1/requests/{request_id}/cancel \
  --header "Authorization: Bearer <token>"

4. Входные файлы

Размещённый файл (URL)

Укажите публично доступный HTTPS URL. Хост должен разрешать серверные запросы (без входа и cookie), без жёсткого лимита и блокировки ботов. Рекомендуется: изображения ≤ 50 МБ (~4K), видео ≤ 100 МБ (~2–5 мин при 720p). Для приватных ресурсов — стабильные или подписанные URL.

5. Схема

Схема входа

{
  "type": "object",
  "title": "Схема входа",
  "required": [
    "prompt"
  ],
  "properties": {
    "prompt": {
      "title": "Промпт",
      "description": "",
      "type": "string",
      "default": "A red-haired woman with voluminous, wavy hair stands in front of a densely packed wall of vibrant purple rhododendron flowers with rich green leaves. She is wearing round, pink-tinted reflective sunglasses that show a soft reflection of the floral environment. Her expression is confident and serene, her lips slightly parted. She wears a black spaghetti strap tank top and high-waisted, belted gray skirt. She holds up a blossoming flower with one hand, her skin fair with natural freckles. The lighting is natural and diffused, suggesting an overcast or shaded forest garden setting, resulting in soft shadows and rich, saturated colors. The image has a shallow depth of field, keeping the woman sharply in focus with slightly blurred background flowers. Captured from a medium-close angle at eye level, the mood is whimsical and modern, with a hint of vintage flair due to the color grading and styling. Style is cinematic, photorealistic, with high detail."
    },
    "negative_prompt": {
      "title": "Негативный промпт",
      "description": "",
      "type": "string",
      "default": ""
    },
    "loras": {
      "title": "Настройки LoRA",
      "description": "Список применяемых весов LoRA (не более 3). Каждую LoRA можно указать URL-адресом или идентификатором репозитория HuggingFace.",
      "type": "array",
      "default": [],
      "items": {
        "path": {
          "title": "LoRA Путь",
          "description": "URL-адрес или идентификатор репозитория HuggingFace (владелец/репозиторий) весов LoRA.",
          "type": "string",
          "format": "str",
          "default": ""
        },
        "scale": {
          "title": "Шкала LoRA",
          "description": "Масштабный коэффициент для приложения LoRA (от 0,0 до 4,0).",
          "type": "float",
          "format": "float_slider_with_range",
          "minimum": 0,
          "maximum": 4,
          "default": 1
        }
      },
      "maxItems": 3,
      "minItems": 0
    },
    "image_size": {
      "title": "Соотношение сторон (Ш:В)",
      "description": "Размер создаваемого изображения; варианты соответствуют разным соотношениям сторон.",
      "type": "string",
      "enum": [
        "square_hd",
        "square",
        "portrait_4_3",
        "portrait_16_9",
        "landscape_4_3",
        "landscape_16_9"
      ],
      "default": "landscape_4_3"
    },
    "num_inference_steps": {
      "title": "Шаги инференса",
      "description": "Количество выполняемых шагов инференса.",
      "type": "integer",
      "minimum": 1,
      "maximum": 50,
      "default": 28
    },
    "guidance_scale": {
      "title": "Масштаб управления",
      "description": "Интенсивность управления при генерации изображения.",
      "type": "float",
      "minimum": 0,
      "maximum": 20,
      "default": 4
    },
    "seed": {
      "title": "Сид",
      "description": "",
      "type": "integer",
      "default": 0
    },
    "output_format": {
      "title": "Формат вывода",
      "description": "Формат файла создаваемого изображения.",
      "type": "string",
      "enum": [
        "jpeg",
        "png",
        "webp"
      ],
      "default": "png"
    }
  }
}

Схема выхода

{
  "output": {
    "type": "object",
    "properties": {
      "image": {
        "type": "string",
        "format": "uri",
        "description": "URL одного изображения"
      },
      "video": {
        "type": "string",
        "format": "uri",
        "description": "URL одного видео"
      },
      "images": {
        "type": "array",
        "description": "несколько URL изображений",
        "items": {
          "type": "string",
          "format": "uri"
        }
      },
      "videos": {
        "type": "array",
        "description": "несколько URL видео",
        "items": {
          "type": "string",
          "format": "uri"
        }
      }
    }
  }
}
Подписывайтесь на нас
  • LinkedIn
  • Facebook
  • Instagram
  • Twitter
Поддержка
  • Discord
  • Email
  • Статус системы
  • партнёр
Модели видео
  • MiniMax H3 Max
  • MiniMax H3 Max Reference to video
  • MiniMax H3 Max text to video
  • MiniMax H3 Open Reference To Video
  • Wan 3.0 Prime
  • Wan 2.7 Image to Video
  • Посмотреть все модели →
Модели изображений
  • Wan 2.6 Image to Image
  • Flux 2 Flash Edit
  • Nano Banana Pro
  • GPT Image 2 Image Edit
  • Qwen Image 3.0 Edit
  • Qwen Image 3.0 Pro Edit
  • Посмотреть все модели →
Юридическая информация
  • Условия обслуживания
  • Политика конфиденциальности
  • Политика в отношении файлов cookie
RunComfy
Авторское право 2026 RunComfy. Все права защищены.

RunComfy - ведущая ComfyUI платформа, предлагающая ComfyUI онлайн среду и услуги, а также рабочие процессы ComfyUI с потрясающей визуализацией. RunComfy также предоставляет AI Models, позволяя художникам использовать новейшие инструменты AI для создания невероятного искусства.