Xiaomi's flagship 1.02T-parameter Mixture-of-Experts model with 42B active parameters, built on a hybrid-attention architecture with 3-layer Multi-Token Prediction. Designed for complex agentic tasks, software engineering, and long-horizon instruction following with a 1M-token context window.
1.0M tokens
2
可用
价格最低
OpenRouter
$4.00/1M tokens
OpenRouter, Xiaomi MiMo
按每百万输入与输出 token 的总成本排序。选择一行可查看提供商详情。
| 提供商 | 价格(每百万) | 速率限制 | 区域 | 状态 | 延迟 |
|---|---|---|---|---|---|
输入: $1.00输出: $3.00 | 60 RPM / 200K TPM | us-east-1 | 正常 | 0ms | |
输入: $1.00输出: $3.00 | 60 RPM / 200K TPM | global | 正常 | 0ms |
通过 OpenRouter 使用此模型,兼容 OpenAI SDK。
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.OPENROUTER_API_KEY,
});
const response = await client.chat.completions.create({
model: "xiaomi/mimo-v2.5-pro",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);使用 OpenRouter API · 兼容 OpenAI SDK