curl--location--request POST 'https://yunwu.ai/v1/images/edits' \
--header'Accept: application/json' \
--header'Authorization: Bearer ' \
--form'image=@"C:\\Users\\Administrator\\Desktop\\sunlit_lounge.png"' \
--form'prompt="A sunlit indoor lounge area with a pool containing a flamingo"' \
--form'mask=@"C:\\Users\\Administrator\\Desktop\\mask.png"' \
--form'model="gpt-image-1"' \
--form'n="1"' \
--form'size="1024x1024"'
返回响应
🟢200OK
application/json
Body
id
string
必需
object
string
必需
created
integer
必需
choices
array [object {3}]
必需
index
integer
可选
message
object
可选
finish_reason
string
可选
usage
object
必需
prompt_tokens
integer
必需
completion_tokens
integer
必需
total_tokens
integer
必需
示例
{"id":"chatcmpl-123","object":"chat.completion","created":1677652288,"choices":[{"index":0,"message":{"role":"assistant","content":"\n\nHello there, how may I assist you today?"},"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":12,"total_tokens":21}}