| mimo-v2.5 | mimo-v2.6-flash | |
|---|---|---|
| Providers | Xiaomi MiMo | Xiaomi MiMo |
| Input $/M | $0.15 | $0.15 |
| Output $/M | $0.30 | $0.30 |
| Output multiplier | ×2.00 | ×2.00 |
| Context window | 1M tokens | 1M tokens |
| Intelligence index | — | — |
| Coding index | 56.8 | — |
Input pricing is close — 1.00× apart — so the decision should come down to measured quality on your own evaluation set rather than headline cost.
Tags: mimo-v2.5 — Chat, Reasoning, Vision · mimo-v2.6-flash — Chat, Reasoning, Coding, Vision
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.6-flash
client.chat.completions.create(model="mimo-v2.6-flash", messages=[{"role": "user", "content": "Hi"}])