mimo 导入不了的可以参考下面的配置

一定要取消勾选多模态,我就是被这个坑了半个小时 :smiling_face_with_tear:
请求地址:https://token-plan-cn.xiaomimimo.com/v1

2 个赞

这个对吗?

curl --location --request POST ‘https://api.xiaomimimo.com/v1/chat/completions
–header “api-key: $MIMO_API_KEY”
–header “Content-Type: application/json”
–data-raw ‘{
“messages”: [
{
“role”: “assistant”,
“content”: “Hello! I am MiMo.”,
“reasoning_content”: “Okay, the user just asked me to introduce myself. That is a pretty straightforward request, but I should think about why they are asking this.”
},
{
“role”: “user”,
“content”: “What is the weather like in Hebei?”
}
],
“model”: “mimo-v2.5-pro”,
“max_completion_tokens”: 1024,
“temperature”: 1.0,
“stream”: false,
“tools”: [
{
“type”: “function”,
“function”: {
“name”: “get_current_weather”,
“description”: “Get the current weather in a given location”,
“parameters”: {
“type”: “object”,
“properties”: {
“location”: {
“type”: “string”,
“description”: “The city and state, e.g. San Francisco, CA”
},
“unit”: {
“type”: “string”,
“enum”: [
“celsius”,
“fahrenheit”
]
}
},
“required”: [
“location”
]
}
}
}
],
“tool_choice”: “auto”
}’

原来mimo不支持多模态的嘛?一直都没有用 mimo 在用 ds

1 个赞

抱歉我没有使用过这种方式

1 个赞

mimo-v2.5-pro不支持多模态,mimo-v2.5支持

2 个赞

好吧, :+1:

1 个赞

自小米mimo上场以来Pro系列都没有配置过多模态能力

1 个赞

已修改回复

1 个赞