Publish time
2026/4/23Model Series
MiMoInput type
Output type
Context Window
1,048,576Max Output Length
131,100Input Price
¥7 / 1M tokensOutput Price
¥21 / 1M tokens万亿参数,高效架构 — 1T 总参数 | 42B 激活 | 1M 超长上下文。 极致 Agent 性能 — 在高强度智能体场景下,表现媲美 Claude Opus4.6。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
0.61s
Throughput
16.09tps
Uptime
100.00%
Provider Model
openrouter/xiaomi/mimo-v2.5-pro
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
1,048,576
Max Output
131,100
Input Price
¥7 / 1M tokens
Output Price
¥21 / 1M tokens
TTFT
0.18s
Throughput
16.31tps
Uptime
100.00%
Provider Model
ksyun/xiaomi/mimo-v2.5-pro
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
1,048,576
Max Output
131,100
Input Price
¥7 / 1M tokens
Output Price
¥21 / 1M tokens
Compare different providers across Zhinao API
24.09 tok/s
0.95 s
Uptime for xiaomi/mimo-v2.5-pro across all providers
Zhinao API normalizes requests and responses across providers for you
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.360.cn/v1",
apiKey: process.env.ZHINAO_API_KEY,
});
const response = await client.chat.completions.create({
model: "xiaomi/mimo-v2.5-pro",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);