xiaomiVision
Xiaomi: MiMo-V2.5
MiMo-V2.5 is a native omnimodal model by Xiaomi. It delivers Pro-level agentic performance at roughly half the inference cost, while surpassing MiMo-V2-Omni in multimodal perception across image and video understanding...
Context
1M tokens
Input / 1M tokens
$0.14
Output / 1M tokens
$0.28
Benchmark
—
Pricing
Input tokens$0.14 per 1M tokens
Output tokens$0.28 per 1M tokens
Cache read$0.00 per 1M tokens
Technical details
Model IDxiaomi/mimo-v2.5
Context window1M tokens
Input modalitiestext, audio, image, video
Output modalitiestext
TokenizerOther
Max output tokens131,072
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'xiaomi/mimo-v2.5',
messages: [{ role: 'user', content: 'Hello!' }],
})