All models

MiMo V2.5

by Xiaomi

Chat Vision Tools Thinking

MiMo V2.5 is Xiaomi's open model tuned for reasoning, tool use, and image understanding. It offers an explicit thinking mode and targets capable multimodal assistance in an efficient package.

Publisher
Xiaomi
API model name
mimo-v2.5
Context window
1M tokens
Licence
MIT
Model card on Hugging Face

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.