





















原文:https://ichochy.com/posts/ai/20251217.html
MiMo,由 小米 大模型Core团队(Xiaomi LLM Core Team)开发的大语言模型。


如上图,体验中………………
https://aistudio.xiaomimimo.com/
https://platform.xiaomimimo.com/
https://api.xiaomimimo.com/v1/chat/completions
https://api.xiaomimimo.com/anthropic/v1/messages
mimo-v2-flash
curl --location --request POST 'https://api.xiaomimimo.com/v1/chat/completions' \
--header "api-key: $MIMO_API_KEY" \
--header "Content-Type: application/json" \
--data-raw '{
"model": "mimo-v2-flash",
"messages": [
{
"role": "user",
"content": "please introduce yourself"
}
],
"max_completion_tokens": 1024,
"temperature": 0.8,
"top_p": 0.95,
"stream": false,
"stop": null,
"frequency_penalty": 0,
"presence_penalty": 0,
"thinking": {
"type": "disabled"
}
}'
curl --location --request POST 'https://api.xiaomimimo.com/anthropic/v1/messages' \
--header "api-key: $MIMO_API_KEY" \
--header "Content-Type: application/json" \
--data-raw '{
"model": "mimo-v2-flash",
"max_tokens": 1024,
"system": "You are a helpful assistant.",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "please introduce yourself"
}
]
}
],
"top_p": 0.95,
"stream": false,
"temperature": 0.8,
"stop_sequences": null,
"thinking": {
"type": "disabled"
}
}'
连夜添加对 MiMo 的支持,最新版本支持 MiMo 开源大模型
iChat (AI Chat) 是一款开源的智能聊天工具。 支持 SiliconFlow、 GLM、MiMo、DeepSeek 、Gemini、Grok、OpenAI、ZenMux、OpenRouter、Cloudflare(AI Gateway)和自定义AI。 使用 SwiftUI 开发,macOS 原生 AI 客服端

博客:https://ichochy.com
网站:https://ai.ichochy.com
下载:https://file.ichochy.com/iChat.zip
GitHub:https://github.com/iChochy/iChat
注意: 因未使用开发者签名,首次运行会触发 macOS 安全提示。
前往 “系统设置 > 隐私与安全性”,选择 “仍要打开”

此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。