Xiaomi: MiMo-V2.5✓ Catalog verified
MiMo-V2.5 is a native omnimodal model by Xiaomi. It delivers Pro-level agentic performance at roughly half the inference cost, while surpassing MiMo-V2-Omni in multimodal perception across image and video understanding...
Overview
MiMo-V2.5 is a native omnimodal model by Xiaomi. It delivers Pro-level agentic performance at roughly half the inference cost, while surpassing MiMo-V2-Omni in multimodal perception across image and video understanding...
Access: available through the official Xiaomi API. Context window: 1.1M.
Specifications
| API identifier | xiaomi/mimo-v2.5 |
| Provider | Xiaomi |
| Model type | Multimodal LLM |
| Context window | 1.1M catalog |
| Input modalities | text · audio · image · video |
| Output modalities | text |
| Released | Apr 22, 2026 |
| Moderated | No |
| Architecture modality | text+image+audio+video->text |
API defaults
{
"top_k": null,
"top_p": 0.95,
"temperature": 1,
"presence_penalty": null,
"frequency_penalty": null,
"repetition_penalty": null
}Pricing
Live pricing components for xiaomi/mimo-v2.5 as published in the catalog.
| Pricing component | Raw unit price | Normalized | Unit |
|---|---|---|---|
| Prompt tokens | $1.4e-7 | $0.14 / 1M | Per input token |
| Completion tokens | $2.8e-7 | $0.28 / 1M | Per output token |
| Request fee | N/A | N/A | Per request |
| Image fee | N/A | N/A | Per image unit |
| Web search fee | N/A | N/A | Per search request |
Cost calculator
Estimate monthly spend from your own token volumes.
Estimated Total Cost
$0.13Calculated from current list pricing in the ModelsAtlas catalog.Capabilities
| Capability | Status | What it means |
|---|---|---|
| Visual Understanding | ✓ Supported | Image and document analysis support |
| Audio Processing | ✓ Supported | Speech and voice aligned flows |
| Tool Calling | ✓ Supported | Supports tools / function calling |
| Self-Hosting | Not advertised | Deploy outside managed APIs |
Capability signals
Directional signals derived from model metadata and capability tags — not official benchmark submissions.
Quick start
Call Xiaomi: MiMo-V2.5 through an OpenAI-compatible client.
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="xiaomi/mimo-v2.5",
messages=[{"role": "user", "content": "Explain quantum physics."}]
)
print(response.choices[0].message.content)Alternatives
Closest models by context window from a different provider.
| Model | Provider | Context | Input /1M | Actions |
|---|---|---|---|---|
| OpenAI GPT Latest | ~openai | 1.1M | $5.00 | View → |
| OpenAI: GPT-5.4 | OpenAI | 1.1M | $2.50 | View → |
Sources & attribution
Pricing and metadata are maintained in the ModelsAtlas catalog.
Frequently asked questions
How much does Xiaomi: MiMo-V2.5 cost?
$0.14 per 1M input tokens and $0.28 per 1M output tokens on the official Xiaomi API.
What is the context window of Xiaomi: MiMo-V2.5?
Xiaomi: MiMo-V2.5 supports up to 1.1M tokens of context.
Does Xiaomi: MiMo-V2.5 support tool / function calling?
Yes, Xiaomi: MiMo-V2.5 supports tool / function calling — you can register tools and the model will emit structured tool calls.
How do I access Xiaomi: MiMo-V2.5?
Use the official Xiaomi API with the model id `xiaomi/mimo-v2.5`. See the Quick start section above for code examples.