curl --location --request POST 'https://api.kksj.me/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "runway-video",
"messages": [
{
"role": "user",
"content": " 熊猫从小吃到大"
}
],
"stream": false
}'