curl --location --request POST 'https://api.dyuapi.com/v1/chat/completions' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "sora2-portrait-15s",
"stream": true,
"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"
}
}
]
}
]
}'