{
"model": "gpt-4o-image",
"stream": false,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "生成一个格斗猫"
},
{
"type": "image_url",
"image_url": {
"url": "https://github.com/dianping/cat/raw/master/cat-home/src/main/webapp/images/logo/cat_logo03.png"
}
}
]
}
]
}
curl --location -g --request POST '{{BASE_URL}}/v1/chat/completions' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-4o-image",
"stream": false,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "生成一个格斗猫"
},
{
"type": "image_url",
"image_url": {
"url": "https://github.com/dianping/cat/raw/master/cat-home/src/main/webapp/images/logo/cat_logo03.png"
}
}
]
}
]
}'
{}