{
"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 --request POST '/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--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": "string",
"object": "string",
"created": 0,
"choices": [
{
"index": 0,
"message": {
"role": "string",
"content": "string"
},
"finish_reason": "string"
}
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0
}
}