Baltor Get started

Models

MiMo-V2.5

By Xiaomi. 310.8 billion parameters, a context window of 1,050,000 tokens and the licence mit.

Facts

Released
2026-04-27 the day the repository was first published on Hugging Face Hugging Face, read
Licence
mit the licence the model card declares Hugging Face, read
Open weights
Yes the weights are published in this Hugging Face repository Hugging Face, read
Parameters
310.8 billion counted from the safetensors weight files Hugging Face, read
Active parameters
11.2 billion estimate estimated from the expert counts and sizes in the configuration model configuration, read
Knowledge cutoff
Unknown
Context window
  • 1,048,576 tokens the maximum position embeddings in the model configuration model configuration, read
  • 1,050,000 tokens the context length OpenRouter lists OpenRouter, read
Longest output
  • 131,072 tokens the largest output OpenRouter's first provider allows OpenRouter, read
Tool calling
  • Yes the chat template in the tokenizer configuration accepts tool definitions Hugging Face, read
  • Yes OpenRouter lists tools among the supported parameters OpenRouter, read
Structured output
  • Yes OpenRouter lists structured outputs among the supported parameters OpenRouter, read
Reasoning controls
  • Yes OpenRouter lists reasoning controls OpenRouter, read
Inputs and outputs
text in, text out Hugging Face, read
Good for
  • Reasoning: OpenRouter lists reasoning controls for it OpenRouter, read
  • Vision: OpenRouter lists images among its inputs OpenRouter, read

Prices

Prices in US dollars per million tokens, as each source lists them
ProviderInputOutputContextAs ofSource
GMICloud through OpenRouter0.119 USD0.238 USD1,050,000OpenRouter endpoints, read
DeepInfra through OpenRouter0.133 USD0.266 USD262,144OpenRouter endpoints, read
Deep Infra direct0.140 USD0.280 USD262,144 older than 30 days; check the providermodels.dev, read
Pioneer direct0.140 USD0.280 USD1,050,000 older than 30 days; check the providermodels.dev, read
Xiaomi through OpenRouter0.140 USD0.280 USD1,048,576OpenRouter endpoints, read
Novita through OpenRouter0.168 USD0.336 USD1,048,576OpenRouter endpoints, read
StreamLake through OpenRouter0.168 USD0.336 USD1,000,000OpenRouter endpoints, read
Hugging Face direct0.400 USD2.00 USD262,144 older than 30 days; check the providermodels.dev, read
Venice through OpenRouter0.400 USD2.00 USD1,000,000OpenRouter endpoints, read

Run it on your own hardware

Weights are the sizes of the files a source lists, or an estimate from the parameter count where none does. Memory is an estimate: weights plus KV cache plus 512 MiB and 5 percent of the weights for runtime buffers. Check it against your hardware.

QuantizationWeightsMemory at 8,192 tokensMemory at 32,768 tokens
UD-IQ1_M86.2 GiB92.1 GiB95.5 GiB
UD-IQ2_XXS89.9 GiB96.0 GiB99.3 GiB
UD-IQ2_M89.9 GiB96.0 GiB99.4 GiB
UD-Q2_K_XL95.9 GiB102 GiB106 GiB
UD-IQ3_S107 GiB114 GiB117 GiB
UD-IQ3_XXS117 GiB125 GiB128 GiB
UD-Q3_K_M130 GiB139 GiB142 GiB
UD-Q3_K_XL131 GiB139 GiB142 GiB
UD-IQ4_NL142 GiB151 GiB154 GiB
UD-Q4_K_S167 GiB177 GiB180 GiB
MXFP4_MOE173 GiB183 GiB186 GiB
UD-Q4_K_M178 GiB188 GiB192 GiB
UD-Q4_K_XL178 GiB189 GiB192 GiB
UD-Q5_K_S201 GiB213 GiB217 GiB
UD-Q5_K_M214 GiB227 GiB230 GiB
UD-Q5_K_XL215 GiB227 GiB231 GiB
UD-Q6_K239 GiB253 GiB256 GiB
UD-Q6_K_XL262 GiB277 GiB280 GiB
Q8_0307 GiB324 GiB327 GiB
UD-Q8_K_XL314 GiB332 GiB335 GiB
BF16577 GiB608 GiB611 GiB

Start it with a local runtime

  • Ollama
    ollama run hf.co/unsloth/MiMo-V2.5-GGUF:UD-IQ1_M
  • LM Studio
    lms get unsloth/MiMo-V2.5-GGUF
    lms server start
  • llama.cpp server
    llama-server -hf unsloth/MiMo-V2.5-GGUF:UD-IQ1_M --jinja
  • vLLM
    vllm serve XiaomiMiMo/MiMo-V2.5
  • SGLang
    sglang serve --model-path XiaomiMiMo/MiMo-V2.5 --port 30000

Use it from your harness

Set up for DeepInfra with the model XiaomiMiMo/MiMo-V2.5. Each endpoint page has the same setup for its own address.

OpenCode

Put this in opencode.json in your project folder:

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "deepinfra": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "DeepInfra",
      "options": {
        "baseURL": "https://api.deepinfra.com/v1/openai",
        "apiKey": "{env:DEEPINFRA_TOKEN}"
      },
      "models": {
        "XiaomiMiMo/MiMo-V2.5": {
          "name": "MiMo-V2.5",
          "limit": {
            "context": 1050000,
            "output": 131072
          }
        }
      }
    }
  }
}
  • OpenCode reads any OpenAI-compatible address through the @ai-sdk/openai-compatible package, and an address that speaks the Responses API through @ai-sdk/openai.

From OpenCode documentation, read .

Pi

Put this in ~/.pi/agent/models.json:

{
  "providers": {
    "deepinfra": {
      "baseUrl": "https://api.deepinfra.com/v1/openai",
      "api": "openai-completions",
      "apiKey": "$DEEPINFRA_TOKEN",
      "models": [
        {
          "id": "XiaomiMiMo/MiMo-V2.5"
        }
      ]
    }
  }
}
  • The apiKey field can name an environment variable as $NAME.

From Pi documentation, read .

Codex

Codex speaks only the Responses API, and DeepInfra documents no Responses address. A gateway that offers one can sit in between.

  • Codex speaks the Responses API only: responses is the one supported wire API of a custom provider. Ollama and LM Studio are built in and start with --oss.

From Codex documentation, read .

Claude Code

Put this in ~/.claude/settings.json, or variables in your shell:

export ANTHROPIC_BASE_URL="https://api.deepinfra.com/anthropic"
export ANTHROPIC_AUTH_TOKEN="$DEEPINFRA_TOKEN"
export ANTHROPIC_MODEL="XiaomiMiMo/MiMo-V2.5"
claude
  • Claude Code sends Anthropic Messages requests to ANTHROPIC_BASE_URL. Anthropic says it does not support routing Claude Code to models other than Claude through any gateway, so some features may not work with another model.

From Claude Code documentation, read .

Other ways to reach it

Published results

These are results other people published. Baltor did not run them and does not rank models by them.