xiaomi logo

Xiaomi: MiMo-V2-Flash

GPU TEE
Chat
xiaomi/mimo-v2-flash
Created Apr 20, 2026|262K context|$0.10/M input tokens|$0.30/M output tokens
Intel TDXNVIDIA CC

MiMo-V2-Flash is an open-source foundation language model developed by Xiaomi. It is a Mixture-of-Experts model with 309B total parameters and 15B active parameters, adopting hybrid attention architecture. MiMo-V2-Flash supports a...

Providers for Xiaomi: MiMo-V2-Flash

RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

chutes logo
chutes
Input Price
$0.10
Output Price
$0.30
Total Context
262K

API

RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

fetch("https://api.redpill.ai/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "xiaomi/mimo-v2-flash",
    "messages": [
      {
        "role": "user",
        "content": "What is the meaning of life?"
      }
    ]
  })
})