# Xiaomi MiMo
Xiaomi MiMo is the API platform for MiMo models. It provides REST APIs compatible with OpenAI and Anthropic formats and uses API keys for authentication. Create your API key in the Xiaomi MiMo console. OpenSoul uses the xiaomi provider with a Xiaomi MiMo API key.
# Model overview
- mimo-v2-flash: 262144-token context window, Anthropic Messages API compatible.
- Base URL:
https://api.xiaomimimo.com/anthropic - Authorization:
Bearer $XIAOMI_API_KEY
# CLI setup
bash
opensoul onboard --auth-choice xiaomi-api-key
# or non-interactive
opensoul onboard --auth-choice xiaomi-api-key --xiaomi-api-key "$XIAOMI_API_KEY"# Config snippet
json5
{
env: { XIAOMI_API_KEY: "your-key" },
agents: { defaults: { model: { primary: "xiaomi/mimo-v2-flash" } } },
models: {
mode: "merge",
providers: {
xiaomi: {
baseUrl: "https://api.xiaomimimo.com/anthropic",
api: "anthropic-messages",
apiKey: "XIAOMI_API_KEY",
models: [
{
id: "mimo-v2-flash",
name: "Xiaomi MiMo V2 Flash",
reasoning: false,
input: ["text"],
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
contextWindow: 262144,
maxTokens: 8192,
},
],
},
},
},
}# Notes
- Model ref:
xiaomi/mimo-v2-flash. - The provider is injected automatically when
XIAOMI_API_KEYis set (or an auth profile exists). - See /concepts/model-providers for provider rules.