xiaomi/mimo-v2.5-pro
1,048,576 context · $1.00/M input tokens · $3.00/M output tokens
MiMo-V2.5-Pro is Xiaomi’s flagship open model for advanced agentic workflows, complex software engineering, and long-horizon task execution. Built on a sparse Mixture-of-Experts architecture with 1.02T total parameters and 42B active parameters, it supports a 1M-token context window and is optimized for autonomous coding agents, large codebase reasoning, tool-use workflows, and multi-step problem solving. It delivers strong performance on agentic and software engineering benchmarks such as ClawEval, GDPVal, and SWE-bench Pro, with an emphasis on token-efficient long-context execution.
按量付费
无需预付费用,仅按实际使用量付费
使用以下代码示例接入我们的 API:
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="xiaomi/mimo-v2.5-pro",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)MiMo-V2.5-Pro is Xiaomi’s flagship open model for advanced agentic workflows, complex software engineering, and long-horizon task execution. Built on a sparse Mixture-of-Experts architecture with 1.02T total parameters and 42B active parameters, it is optimized for autonomous coding agents, large codebase reasoning, tool use, and multi-step problem solving.
| Specification | Value |
|---|---|
| Provider | xiaomi |
| Model Type | Chat Completions model |
| Architecture | Sparse Mixture-of-Experts |
| Parameters | 1.02T total / 42B active |
| Context Window | 1,048,576 tokens |
| Max Input | 1,032,192 tokens |
| Max Output | 16,384 tokens |
| Input | Text |
| Output | Text |
| Vision | Not listed |
| Function Calling | Supported |
| Structured Outputs | Supported |
| Primary Use Cases | Agentic coding, complex software engineering, long-horizon tasks, tool use |
| Token Type | Cost |
|---|---|
| Input | $1.00 per million tokens |
| Output | $3.00 per million tokens |
| Cached Input | $0.20 per million tokens |
Base URL: https://llm.wavespeed.ai/v1
API Endpoint: chat/completions
Model ID: xiaomi/mimo-v2.5-pro
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="xiaomi/mimo-v2.5-pro",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
curl https://llm.wavespeed.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "xiaomi/mimo-v2.5-pro",
"messages": [{"role": "user", "content": "Hello!"}]
}'
xiaomi/mimo-v2.5-pro
MiMo-V2.5-Pro is Xiaomi’s flagship open model for advanced agentic workflows, complex software engineering, and long-horizon task execution. Built on a sparse Mixture-of-Experts architecture with 1.02T total parameters and 42B active parameters, it supports a 1M-token context window and is optimized for autonomous coding agents, large codebase reasoning, tool-use workflows, and multi-step problem solving. It delivers strong performance on agentic and software engineering benchmarks such as ClawEval, GDPVal, and SWE-bench Pro, with an emphasis on token-efficient long-context execution.
输入
$1 /M
输出
$3 /M
上下文
1049K
最大输出
16K
工具调用
支持
通过我们的统一 API 接入 Mimo V2.5 Pro — 兼容 OpenAI、无冷启动、透明计费。
WaveSpeedAI 定价:输入每百万 token $1.00,输出每百万 token $3.00。Prompt 缓存和批处理单独计费,可显著降低长上下文、高重复任务的实际成本。
Mimo V2.5 Pro 单次请求最多支持 1049K 上下文 token,输出最多 16K token。
是的。WaveSpeedAI 通过 https://llm.wavespeed.ai/v1 的 OpenAI 兼容端点提供 Mimo V2.5 Pro。把官方 OpenAI SDK 的 base URL 指向该地址,使用 WaveSpeedAI 的 API Key 即可,无需任何其他代码改动。
登录 WaveSpeedAI,在 Access Keys 中生成 API Key,使用上方显示的 model id 向 https://llm.wavespeed.ai/v1/chat/completions 发送请求。新账户可获得免费额度,用于试用 Mimo V2.5 Pro。