Authorization: Bearer ********************
{
"model": "gemini-all", // 枚举值 glm-4v-plus gemini-all
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": [
{
"type": "text",
"text": "解读视频"
},
{
"type": "video_url",
"video_url": {
"url": "https://lmdbk.com/5.mp4"
}
}
]
}
]
}
curl --location --request POST 'https://api.chatfire.cn/v1/chat/completions' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gemini-all", // 枚举值 glm-4v-plus gemini-all
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": [
{
"type": "text",
"text": "解读视频"
},
{
"type": "video_url",
"video_url": {
"url": "https://lmdbk.com/5.mp4"
}
}
]
}
]
}'