Back to Models
xiaomi/mimo-v2-5-pro

MiMo-V2.5-Pro

MiMo-V2.5-Pro is Xiaomi’s flagship model, delivering strong performance in general agentic capabilities, complex software engineering, and long-horizon tasks, with top rankings on benchmarks such as ClawEval, GDPVal, and SWE-bench Pro....

4/22/2026
1,050,000 tokens
Input: ¥77.7345/M
Output: ¥155.469/M
Specifications

Modalities

Input
text
Output
text

Supported Parameters

frequency_penalty
include_reasoning
logit_bias
logprobs
max_tokens
min_p
presence_penalty
reasoning
repetition_penalty
response_format
seed
stop
structured_outputs
temperature
tool_choice
tools
top_k
top_logprobs
top_p

Max Output Tokens

131,072
Code Examples
curl https://api.fastmetal.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "mimo-v2.5-pro",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

How MiMo-V2.5-Pro actually answers

Real responses to our standard prompts, recorded on FastMetal.

Count the number of 'r's in 'strawberry'

Count the number of 'r's in 'strawberry'. Explain your reasoning step by step.

## Counting the r's in "strawberry" Let me go through each letter one by one: | Position | Letter | Is it 'r'? | |----------|--------|------------| | 1 | s | No | | 2 | t | No | | 3 | **r** | ✅ Yes (#1) | | 4 | a | No | | 5 | w | No | | 6 | b | No | | 7 | e | No | | 8 | **r** | ✅ Yes (#2) | | 9 | **r** | ✅ Yes (#3) | | 10 | y | No | **There are 3 r's in "strawberry."** The word breaks down as **straw·ber·ry**, and the r's appear at the end of "staw" and then twice in the double-r of "rry."
8.3s response313 output tokens
Debug This Error

I'm getting the following error in my Node.js application: TypeError: Cannot read properties of undefined (reading 'map') at UserList (/app/components/UserList.js:12:25) at renderWithHooks (/app/node_modules/rea…

# Fixing `Cannot read properties of undefined (reading 'map')` ## The Problem The error means `users` is `undefined` when the component first renders. This typically happens when: 1. **The parent component hasn't passed the `users` prop** 2. **The data is being fetched asynchronously and isn't available yet** 3. **The prop name is misspelled in the parent** For example, the parent might be rendering it like this: ```jsx // ❌ No users prop passed — `users` will be undefined <UserList /> ``` ## Solutions ### 1. Add a Default Prop Value (Simple Fix) ```jsx function UserList({ users = [] }) { return ( <ul> {users.map(user => <li key={user.id}>{user.name}</li>)} </ul> ); }…
14.4s response680 output tokens
Code Review

Please review the following Python function and suggest improvements for readability, performance, and best practices: def get_data(url, retries=3): import requests import time for i in range(retries):…

# Code Review: `get_data` Function ## Issues Identified ``` ┌──────────────────────────────────────────────────────────────┐ │ ISSUE SEVERITY MAP │ ├──────────────────┬────────────┬──────────────────────────────┤ │ Issue │ Severity │ Category │ ├──────────────────┼────────────┼──────────────────────────────┤ │ Bare except │ 🔴 High │ Error Handling / Best Prac. │ │ Silent failures │ 🔴 High │ Debuggability │ │ == True check │ 🟡 Medium │ Readability / PEP 8 │ │ Inline imports │ 🟡 Medium │ Best Practice │ │ No type hints │ 🟡 Medium │ Best Practice…
10.4s response1572 output tokens

Compare these answers side by side with other models →

Try MiMo-V2.5-Pro right now

MiMo-V2.5-Pro is available on FastMetal through one API key. Start in the browser, or call it from the OpenAI SDK.