{
"model": "gemini-2.5-pro-preview-05-06",
"stream": true,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "这个视频讲了什么?"
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.klingai.com/bs2/upload-kling-api/9940478466/image2video/ChDGZWhmQd8AAAAAAWo7kg-0_raw_video_2.mp4"
}
}
]
}
],
"max_tokens": 4000
}
curl --location -g --request POST '{{BASE_URL}}/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gemini-2.5-pro-preview-05-06",
"stream": true,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "这个视频讲了什么?"
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.klingai.com/bs2/upload-kling-api/9940478466/image2video/ChDGZWhmQd8AAAAAAWo7kg-0_raw_video_2.mp4"
}
}
]
}
],
"max_tokens": 4000
}'
{
"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
}
}