| MiniMax-M2.1-highspeed | MiniMax-M2.5-highspeed | |
|---|---|---|
| Providers | MiniMax | MiniMax |
| Input $/M | $0.64 | $0.64 |
| Output $/M | $2.55 | $2.55 |
| Output multiplier | ×4.00 | ×4.00 |
| Context window | 204.8K tokens | 204.8K tokens |
| Intelligence index | — | — |
| Coding index | — | — |
Input pricing is close — 1.00× apart — so the decision should come down to measured quality on your own evaluation set rather than headline cost.
Tags: MiniMax-M2.1-highspeed — Chat, Reasoning, Coding · MiniMax-M2.5-highspeed — Chat, Reasoning, Coding
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# MiniMax-M2.1-highspeed
client.chat.completions.create(model="MiniMax-M2.1-highspeed", messages=[{"role":"user","content":"Hi"}])
# MiniMax-M2.5-highspeed
client.chat.completions.create(model="MiniMax-M2.5-highspeed", messages=[{"role": "user", "content": "Hi"}])