Authorization: Bearer ********************{
"model": "qwen-image-edit-plus",
"input": {
"messages": [
{
"role": "user",
"content": [
{
"image": "https://example.com/image.jpg"
},
{
"text": "将背景改为海滩场景"
}
]
}
]
},
"parameters": {
"n": 1,
"prompt_extend": true,
"watermark": false
}
}curl --location --request POST 'https://api.llmhub.com.cn/v1/images/edits' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "qwen-image-edit-plus",
"input": {
"messages": [
{
"role": "user",
"content": [
{
"image": "https://example.com/image.jpg"
},
{
"text": "将背景改为海滩场景"
}
]
}
]
},
"parameters": {
"n": 1,
"prompt_extend": true,
"watermark": false
}
}'{
"created": 0,
"data": [
{
"url": "string",
"b64_json": "string",
"revised_prompt": "string"
}
]
}