| mimo-v2.5 | mimo-v2.5-pro | |
|---|---|---|
| Providers | Xiaomi MiMo | Xiaomi MiMo |
| Input $/M | $0.15 | $0.45 |
| Output $/M | $0.30 | $0.91 |
| Output multiplier | ×2.00 | ×2.00 |
| Context window | 1M tokens | 1M tokens |
| Intelligence index | — | 32.6 |
| Coding index | 56.8 | 60.2 |
mimo-v2.5 is roughly 3.0× cheaper on input than mimo-v2.5-pro. If your workload passes the quality bar on the cheaper model, that gap compounds across every request; route to mimo-v2.5-pro deliberately rather than by default.
Tags: mimo-v2.5 — Chat, Reasoning, Vision · mimo-v2.5-pro — Chat, Reasoning, Coding
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# mimo-v2.5
client.chat.completions.create(model="mimo-v2.5", messages=[{"role":"user","content":"Hi"}])
# mimo-v2.5-pro
client.chat.completions.create(model="mimo-v2.5-pro", messages=[{"role": "user", "content": "Hi"}])