Baltor Get started

Models

MiniMax-M3

By MiniMaxAI. 427.0 billion parameters, a context window of 1,048,576 tokens and the licence other.

Facts

Released
2026-06-02 the day the repository was first published on Hugging Face Hugging Face, read
Licence
other 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
427.0 billion counted from the safetensors weight files Hugging Face, read
Active parameters
5.8 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
Longest output
Unknown
Tool calling
Unknown
Structured output
Unknown
Reasoning controls
Unknown
Inputs and outputs
text, image in, text out Hugging Face, read
Good for
  • Vision: Hugging Face files it under image-text-to-text Hugging Face, read

Prices

Prices in US dollars per million tokens, as each source lists them
ProviderInputOutputContextAs ofSource
Nvidia direct0 USD0 USD1,000,000 older than 30 days; check the providermodels.dev, read
CoreWeave direct0.230 USD0.960 USD262,144 older than 30 days; check the providermodels.dev, read
Deep Infra direct0.280 USD1.10 USD524,288 older than 30 days; check the providermodels.dev, read
Lilac direct0.280 USD1.10 USD1,048,576 older than 30 days; check the providermodels.dev, read
Abacus direct0.300 USD1.20 USD1,000,000 older than 30 days; check the providermodels.dev, read
Hugging Face direct0.300 USD1.20 USD524,288 older than 30 days; check the providermodels.dev, read
Nebius Token Factory direct0.300 USD1.20 USD1,048,576 older than 30 days; check the providermodels.dev, read
Pioneer direct0.300 USD1.20 USD1,000,000 older than 30 days; check the providermodels.dev, read
SiliconFlow direct0.300 USD1.20 USD1,048,576 older than 30 days; check the providermodels.dev, read
Together AI direct0.300 USD1.20 USD524,288 older than 30 days; check the providermodels.dev, read
GMI Cloud direct0.600 USD2.40 USD1,048,576 older than 30 days; check the providermodels.dev, 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_M120 GiB127 GiB130 GiB
UD-IQ2_XXS125 GiB132 GiB135 GiB
UD-IQ2_M125 GiB133 GiB135 GiB
UD-Q2_K_XL133 GiB141 GiB144 GiB
UD-IQ3_XXS148 GiB157 GiB160 GiB
UD-IQ3_S163 GiB172 GiB175 GiB
UD-Q3_K_M181 GiB192 GiB195 GiB
UD-Q3_K_XL181 GiB192 GiB195 GiB
UD-IQ4_NL197 GiB209 GiB211 GiB
UD-Q4_K_S231 GiB244 GiB246 GiB
MXFP4_MOE239 GiB252 GiB255 GiB
UD-Q4_K_M246 GiB260 GiB262 GiB
UD-Q4_K_XL247 GiB261 GiB263 GiB
UD-Q5_K_S278 GiB294 GiB296 GiB
UD-Q5_K_M296 GiB312 GiB315 GiB
UD-Q5_K_XL297 GiB313 GiB316 GiB
UD-Q6_K330 GiB348 GiB351 GiB
UD-Q6_K_XL361 GiB380 GiB383 GiB
Q8_0422 GiB444 GiB447 GiB
UD-Q8_K_XL432 GiB456 GiB458 GiB
BF16793 GiB835 GiB837 GiB

Start it with a local runtime

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

Use it from your harness

Set up for Abacus with the model MiniMaxAI/MiniMax-M3. 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": {
    "abacus": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "Abacus",
      "options": {
        "baseURL": "https://routellm.abacus.ai/v1",
        "apiKey": "{env:ABACUS_API_KEY}"
      },
      "models": {
        "MiniMaxAI/MiniMax-M3": {
          "name": "MiniMax-M3"
        }
      }
    }
  }
}
  • 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": {
    "abacus": {
      "baseUrl": "https://routellm.abacus.ai/v1",
      "api": "openai-completions",
      "apiKey": "$ABACUS_API_KEY",
      "models": [
        {
          "id": "MiniMaxAI/MiniMax-M3"
        }
      ]
    }
  }
}
  • The apiKey field can name an environment variable as $NAME.

From Pi documentation, read .

Codex

Codex speaks only the Responses API, and Abacus 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

Claude Code sends Anthropic Messages requests, and Abacus documents no such address. A gateway that translates to that API can sit in between.

  • 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.