Authorization: Bearer ********************{
"model": "SenseNova-V6-Pro",
"messages": [
{
"role": "user",
"content": [
{
"type": "video_url",
"video_url": {
"url": "https://cdn.bigmodel.cn/agent-demos/lark/113123.mov"
}
},
{
"type": "text",
"text": "这视频各自的主要内容是啥?用不少于20个字,描述它。"
}
]
}
]
}curl --location --request POST 'https://api.mixrouter.com/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "SenseNova-V6-Pro",
"messages": [
{
"role": "user",
"content": [
{
"type": "video_url",
"video_url": {
"url": "https://cdn.bigmodel.cn/agent-demos/lark/113123.mov"
}
},
{
"type": "text",
"text": "这视频各自的主要内容是啥?用不少于20个字,描述它。"
}
]
}
]
}'{
"choices": [
{
"finish_reason": "string",
"index": 0,
"logprobs": null,
"message": {
"content": "string",
"reasoning_content": "string",
"role": "string"
}
}
],
"created": 0,
"id": "string",
"model": "string",
"service_tier": "string",
"object": "string",
"usage": {
"completion_tokens": 0,
"prompt_tokens": 0,
"total_tokens": 0,
"prompt_tokens_details": {
"cached_tokens": 0
},
"completion_tokens_details": {
"reasoning_tokens": 0
}
}
}