All models
Model card on Hugging Face
MiMo-V2.5
by Xiaomi
Chat Vision Tools Thinking
Xiaomi's MiMo-V2.5 (mimo_v2 family) — vision, tool use, reasoning; 1048K context.
- Publisher
- Xiaomi
- Context window
- 1M tokens
- Licence
- MIT
Run MiMo-V2.5
Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.
Chat
from pendra import Pendra
client = Pendra(api_key="pdr_sk_...")
response = client.chat.completions.create(
model="mimo-v2.5",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content) Vision
from pendra import Pendra
client = Pendra(api_key="pdr_sk_...")
response = client.chat.completions.create(
model="mimo-v2.5",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": "What's in this image?"},
{"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}},
],
}
],
)
print(response.choices[0].message.content) Run MiMo-V2.5 on your own UK infrastructure
Deploy a worker, install MiMo-V2.5, and start serving it through one sovereign API endpoint.