{
"model": "sora_video2",
"stream": true,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "create a war cat"
},
{
"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": "sora_video2",
"stream": true,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "create a war cat"
},
{
"type": "image_url",
"image_url": {
"url": "https://github.com/dianping/cat/raw/master/cat-home/src/main/webapp/images/logo/cat_logo03.png"
}
}
]
}
]
}'{
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"model": "sora_video2",
"choices": [
{
"index": 0,
"delta": {
"content": "\n\nvideo generated successful,[click here](https://xxxxxx.mp4)"
},
"finish_reason": null
}
],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
}