MiMo-V2.5
By Xiaomi. 310.8 billion parameters, a context window of 1,050,000 tokens and the licence mit.
Facts
- Released
- 2026-04-27 the day the repository was first published on Hugging Face Hugging Face, read
- Licence
- mit the licence the model card declares Hugging Face, read
- Open weights
- Yes the weights are published in this Hugging Face repository Hugging Face, read
- Parameters
- 310.8 billion counted from the safetensors weight files Hugging Face, read
- Active parameters
- 11.2 billion estimate estimated from the expert counts and sizes in the configuration model configuration, read
- Knowledge cutoff
- Unknown
- Context window
- 1,048,576 tokens the maximum position embeddings in the model configuration model configuration, read
- 1,050,000 tokens the context length OpenRouter lists OpenRouter, read
- Longest output
- 131,072 tokens the largest output OpenRouter's first provider allows OpenRouter, read
- Tool calling
- Yes the chat template in the tokenizer configuration accepts tool definitions Hugging Face, read
- Yes OpenRouter lists tools among the supported parameters OpenRouter, read
- Structured output
- Yes OpenRouter lists structured outputs among the supported parameters OpenRouter, read
- Reasoning controls
- Yes OpenRouter lists reasoning controls OpenRouter, read
- Inputs and outputs
- text in, text out Hugging Face, read
- Good for
- Reasoning: OpenRouter lists reasoning controls for it OpenRouter, read
- Vision: OpenRouter lists images among its inputs OpenRouter, read
Prices
| Provider | Input | Output | Context | As of | Source |
|---|---|---|---|---|---|
| GMICloud through OpenRouter | 0.119 USD | 0.238 USD | 1,050,000 | OpenRouter endpoints, read | |
| DeepInfra through OpenRouter | 0.133 USD | 0.266 USD | 262,144 | OpenRouter endpoints, read | |
| Deep Infra direct | 0.140 USD | 0.280 USD | 262,144 | older than 30 days; check the provider | models.dev, read |
| Pioneer direct | 0.140 USD | 0.280 USD | 1,050,000 | older than 30 days; check the provider | models.dev, read |
| Xiaomi through OpenRouter | 0.140 USD | 0.280 USD | 1,048,576 | OpenRouter endpoints, read | |
| Novita through OpenRouter | 0.168 USD | 0.336 USD | 1,048,576 | OpenRouter endpoints, read | |
| StreamLake through OpenRouter | 0.168 USD | 0.336 USD | 1,000,000 | OpenRouter endpoints, read | |
| Hugging Face direct | 0.400 USD | 2.00 USD | 262,144 | older than 30 days; check the provider | models.dev, read |
| Venice through OpenRouter | 0.400 USD | 2.00 USD | 1,000,000 | OpenRouter endpoints, read |
Run it on your own hardware
Weights are the sizes of the files a source lists, or an estimate from the parameter count where none does. Memory is an estimate: weights plus KV cache plus 512 MiB and 5 percent of the weights for runtime buffers. Check it against your hardware.
| Quantization | Weights | Memory at 8,192 tokens | Memory at 32,768 tokens |
|---|---|---|---|
| UD-IQ1_M | 86.2 GiB | 92.1 GiB | 95.5 GiB |
| UD-IQ2_XXS | 89.9 GiB | 96.0 GiB | 99.3 GiB |
| UD-IQ2_M | 89.9 GiB | 96.0 GiB | 99.4 GiB |
| UD-Q2_K_XL | 95.9 GiB | 102 GiB | 106 GiB |
| UD-IQ3_S | 107 GiB | 114 GiB | 117 GiB |
| UD-IQ3_XXS | 117 GiB | 125 GiB | 128 GiB |
| UD-Q3_K_M | 130 GiB | 139 GiB | 142 GiB |
| UD-Q3_K_XL | 131 GiB | 139 GiB | 142 GiB |
| UD-IQ4_NL | 142 GiB | 151 GiB | 154 GiB |
| UD-Q4_K_S | 167 GiB | 177 GiB | 180 GiB |
| MXFP4_MOE | 173 GiB | 183 GiB | 186 GiB |
| UD-Q4_K_M | 178 GiB | 188 GiB | 192 GiB |
| UD-Q4_K_XL | 178 GiB | 189 GiB | 192 GiB |
| UD-Q5_K_S | 201 GiB | 213 GiB | 217 GiB |
| UD-Q5_K_M | 214 GiB | 227 GiB | 230 GiB |
| UD-Q5_K_XL | 215 GiB | 227 GiB | 231 GiB |
| UD-Q6_K | 239 GiB | 253 GiB | 256 GiB |
| UD-Q6_K_XL | 262 GiB | 277 GiB | 280 GiB |
| Q8_0 | 307 GiB | 324 GiB | 327 GiB |
| UD-Q8_K_XL | 314 GiB | 332 GiB | 335 GiB |
| BF16 | 577 GiB | 608 GiB | 611 GiB |
Start it with a local runtime
- Ollama
ollama run hf.co/unsloth/MiMo-V2.5-GGUF:UD-IQ1_M - LM Studio
lms get unsloth/MiMo-V2.5-GGUF lms server start - llama.cpp server
llama-server -hf unsloth/MiMo-V2.5-GGUF:UD-IQ1_M --jinja - vLLM
vllm serve XiaomiMiMo/MiMo-V2.5 - SGLang
sglang serve --model-path XiaomiMiMo/MiMo-V2.5 --port 30000
Use it from your harness
Set up for DeepInfra with the model XiaomiMiMo/MiMo-V2.5. Each endpoint page has the same setup for its own address.
OpenCode
Put this in opencode.json in your project folder:
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"deepinfra": {
"npm": "@ai-sdk/openai-compatible",
"name": "DeepInfra",
"options": {
"baseURL": "https://api.deepinfra.com/v1/openai",
"apiKey": "{env:DEEPINFRA_TOKEN}"
},
"models": {
"XiaomiMiMo/MiMo-V2.5": {
"name": "MiMo-V2.5",
"limit": {
"context": 1050000,
"output": 131072
}
}
}
}
}
}- OpenCode reads any OpenAI-compatible address through the @ai-sdk/openai-compatible package, and an address that speaks the Responses API through @ai-sdk/openai.
From OpenCode documentation, read .
Pi
Put this in ~/.pi/agent/models.json:
{
"providers": {
"deepinfra": {
"baseUrl": "https://api.deepinfra.com/v1/openai",
"api": "openai-completions",
"apiKey": "$DEEPINFRA_TOKEN",
"models": [
{
"id": "XiaomiMiMo/MiMo-V2.5"
}
]
}
}
}- The apiKey field can name an environment variable as $NAME.
From Pi documentation, read .
Codex
Codex speaks only the Responses API, and DeepInfra documents no Responses address. A gateway that offers one can sit in between.
- Codex speaks the Responses API only: responses is the one supported wire API of a custom provider. Ollama and LM Studio are built in and start with --oss.
From Codex documentation, read .
Claude Code
Put this in ~/.claude/settings.json, or variables in your shell:
export ANTHROPIC_BASE_URL="https://api.deepinfra.com/anthropic"
export ANTHROPIC_AUTH_TOKEN="$DEEPINFRA_TOKEN"
export ANTHROPIC_MODEL="XiaomiMiMo/MiMo-V2.5"
claude- Claude Code sends Anthropic Messages requests to ANTHROPIC_BASE_URL. Anthropic says it does not support routing Claude Code to models other than Claude through any gateway, so some features may not work with another model.
From Claude Code documentation, read .
Other ways to reach it
- Hugging Face, model
XiaomiMiMo/MiMo-V2.5 - Pioneer, model
XiaomiMiMo/MiMo-V2.5 - OpenRouter, model
xiaomi/mimo-v2.5
Published results
These are results other people published. Baltor did not run them and does not rank models by them.
- Results the maker published on the model card published by XiaomiMiMo Hugging Face, read
- Artificial Analysis Coding Index: 56.8 published by Artificial Analysis OpenRouter, read
- Artificial Analysis Agentic Index: 15.8 published by Artificial Analysis OpenRouter, read
Sources of this page
- huggingface.co/api/models/XiaomiMiMo/MiMo-V2.5, read
- huggingface.co/XiaomiMiMo/MiMo-V2.5/raw/main/config.json, read
- huggingface.co/api/models/unsloth/MiMo-V2.5-GGUF/tree/main, read
- openrouter.ai/api/v1/models/xiaomi/mimo-v2.5-20260422/endpoints, read
- openrouter.ai/api/v1/models, read
- models.dev/api.json, read
Paid links
No link in this directory is a paid link or an ad, and no listing is paid for. The order and the contents of every list come from the sources named on this page.