jackieyaung/qwen-image-edit-2509-gguf
Cost-efficient, reproducible image editing with full diffusion parameter control.
Run jackieyaung/qwen-image-edit-2509-gguf with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| image |
string
|
输入图像(主图像)
|
|
| prompt |
string
|
|
编辑提示词
|
| negative_prompt |
string
|
blurry, low quality, distorted
|
负面提示词
|
| steps |
integer
|
25
Min: 1 Max: 100 |
推理步数 (建议: Lightning模式4步 / 普通模式25-30步)
|
| cfg_scale |
number
|
1
Min: 1 Max: 20 |
CFG Scale (引导强度)
|
| seed |
integer
|
-1
|
随机种子 (-1 为随机)
|
| denoise |
number
|
0.5
Max: 1 |
去噪强度
|
{
"type": "object",
"title": "Input",
"required": [
"image"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": -1,
"x-order": 5,
"description": "\u968f\u673a\u79cd\u5b50 (-1 \u4e3a\u968f\u673a)"
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"x-order": 0,
"description": "\u8f93\u5165\u56fe\u50cf\uff08\u4e3b\u56fe\u50cf\uff09"
},
"steps": {
"type": "integer",
"title": "Steps",
"default": 25,
"maximum": 100,
"minimum": 1,
"x-order": 3,
"description": "\u63a8\u7406\u6b65\u6570 (\u5efa\u8bae: Lightning\u6a21\u5f0f4\u6b65 / \u666e\u901a\u6a21\u5f0f25-30\u6b65)"
},
"prompt": {
"type": "string",
"title": "Prompt",
"default": "",
"x-order": 1,
"description": "\u7f16\u8f91\u63d0\u793a\u8bcd"
},
"denoise": {
"type": "number",
"title": "Denoise",
"default": 0.5,
"maximum": 1,
"minimum": 0,
"x-order": 6,
"description": "\u53bb\u566a\u5f3a\u5ea6"
},
"cfg_scale": {
"type": "number",
"title": "Cfg Scale",
"default": 1,
"maximum": 20,
"minimum": 1,
"x-order": 4,
"description": "CFG Scale (\u5f15\u5bfc\u5f3a\u5ea6)"
},
"negative_prompt": {
"type": "string",
"title": "Negative Prompt",
"default": "blurry, low quality, distorted",
"x-order": 2,
"description": "\u8d1f\u9762\u63d0\u793a\u8bcd"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
{
"type": "string",
"title": "Output",
"format": "uri"
}