在 Qwen Image Edit 之上应用自定义训练的 LoRA 风格,编辑任意图像。通过简单的 REST API 实现精准、微调的编辑。可免费试用——按次生成付费,无需订阅。
About this model
Qwen Image Edit LoRA 在 Qwen Image Edit 之上叠加了自定义 LoRA 支持,让你在修改或添加입력 파라미터图像中的元素时,应用经过微调的风格、角色或产品外观。提供一张源图像、描述编辑内容的文本프롬프트,以及最多 3 个带独立 scale 倍率的 LoRA 权重文件。
Cost analysis
| Provider | Cost | Notes |
|---|---|---|
| muapiapp | $0.04 per generation | 无论应用多少个 LoRA 权重,每次生成均按固定价格计费。 |
| Fal.ai | $0.05 per generation | Muapiapp is roughly 20% cheaper for comparable Qwen Image Edit LoRA generations. |
| Replicate | $0.05 per generation | 按使用量计费,与 Fal.ai 价格相近;muapiapp 仍是更便宜的选择。 |
无论应用多少个 LoRA 权重,每次生成均按固定价格计费。
Muapiapp is roughly 20% cheaper for comparable Qwen Image Edit LoRA generations.
按使用量计费,与 Fal.ai 价格相近;muapiapp 仍是更便宜的选择。
** Competitor pricing is estimated based on similar model architectures and usage tiers.
Configuration schema
| Parameter | Type | Description | Default |
|---|---|---|---|
| 프롬프트 | string | Text prompt describing the image edits. | A cinematic ocean wave at sunrise, highly detailed |
| 이미지 URL | string | 입력이미지的 URL。 | https://d3adwkbyhxyrtq.cloudfront.net/ai-images/186/902675646946/c0951838-8bc5-4598-8e8e-941df16446fa.jpg |
| 화면 비율 | Enum (9 options) | Aspect ratio of generated image. | 1:1 |
| LoRA 列表 | array | 要应用的 LoRA 列表(最多 3 个)。 | [object Object] |
| 输出포맷 | Enum (3 options) | Format of the output image. | jpeg |
Text prompt describing the image edits.
A cinematic ocean wave at sunrise, highly detailed입력이미지的 URL。
https://d3adwkbyhxyrtq.cloudfront.net/ai-images/186/902675646946/c0951838-8bc5-4598-8e8e-941df16446fa.jpgAspect ratio of generated image.
1:1要应用的 LoRA 列表(最多 3 个)。
[object Object]Format of the output image.
jpegDeveloper documentation
提供源图像
image_url 设置为要编辑的图像。编写编辑프롬프트
应用 LoRA 权重(可选)
loras 中添加最多 3 个条目,每个条目包含一个 path(指向 .safetensors 文件的 URL)和一个 scale(0–4,默认 1),用于控制其强度。设置출력 결과选项
aspect_ratio 和 output_format(jpeg、png 或 webp)。通过 API 提交
curl -X POST https://api.muapi.ai/api/v1/qwen-image-edit-lora \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Add a red scarf and change the background to a snowy street.",
"image_url": "https://example.com/source.jpg",
"loras": [{"path": "https://example.com/my-style.safetensors", "scale": 1}]
}'
GET /api/v1/predictions/{request_id}/result,直到 status 为 completed,然后从 output 获取图像 URL。Frequently asked
它会根据文本프롬프트编辑一张입력 파라미터图像,同时应用最多 3 个自定义 LoRA 权重文件,将结果引导至训练好的风格、角色或外观。
任何可公开访问的 `.safetensors` URL 都可以——包括由 muapiapp LoRA trainer endpoint 生成的文件,或 Hugging Face 等第三方托管服务上的文件。
最多 3 个,每个 LoRA 都有自己的 `scale` 倍率(0–4,默认 1),用于控制其影响强度。
此端点接收单个 `image_url`;2511 变体通过 `images_list` 接收最多 3 张参考图像,并提供更强的多图编辑一致性。
支持 `jpeg`、`png` 或 `webp`,通过 `output_format` 设置。