curl --location --request POST 'https://api.shubiaobiao.com/v1/chat/completions' \
--header "Authorization: Bearer $MIMO_API_KEY" \
--header "Content-Type: application/json" \
--data-raw '{
"model": "mimo-v2-omni",
"messages": [
{
"role": "system",
"content": "You are MiMo, an AI assistant developed by Xiaomi. Today is date: Tuesday, December 16, 2025. Your knowledge cutoff date is December 2024."
},
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {
"url": "https://example-files.cnbj1.mi-fds.com/example-files/image/image_example.png"
}
},
{
"type": "text",
"text": "please describe the content of the image"
}
]
}
],
"max_completion_tokens": 1024
}'