Xiaomi MiMo 小米大模型团队开发的大语言模型,开源限免中……

原文:https://ichochy.com/posts/ai/20251217.html

Xiaomi MiMo API

MiMo,由 小米 大模型Core团队(Xiaomi LLM Core Team)开发的大语言模型。

有图有真相

MiMo.jpg

Settings.jpg

如上图,体验中………………

网页对话:

https://aistudio.xiaomimimo.com/

控制台:

https://platform.xiaomimimo.com/

API URL(OpenAI):

https://api.xiaomimimo.com/v1/chat/completions

API URL(Anthropic):

https://api.xiaomimimo.com/anthropic/v1/messages

Models:

mimo-v2-flash

CURL

OpenAI API 格式示例


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"
    }
}'

Anthropic API 格式示例

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"
    }
}'

iChat

连夜添加对 MiMo 的支持,最新版本支持 MiMo 开源大模型

iChat (AI Chat) 是一款开源的智能聊天工具。 支持 SiliconFlow、 GLM、MiMo、DeepSeek 、Gemini、Grok、OpenAI、ZenMux、OpenRouter、Cloudflare(AI Gateway)和自定义AI。 使用 SwiftUI 开发,macOS 原生 AI 客服端

Chat.jpg

About

博客:https://ichochy.com
网站:https://ai.ichochy.com
下载:https://file.ichochy.com/iChat.zip
GitHub:https://github.com/iChochy/iChat

安装说明

注意: 因未使用开发者签名,首次运行会触发 macOS 安全提示。
前往 “系统设置 > 隐私与安全性”,选择 “仍要打开”

Open.jpg