| MiniMax-M2.7-highspeed | minimax-m3 | |
|---|---|---|
| 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 | 1M tokens |
| Intelligence index | — | 35.7 |
| Coding index | — | 58.6 |
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.7-highspeed — Chat, Reasoning, Coding · minimax-m3 — Chat, Reasoning, Coding, Vision
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# MiniMax-M2.7-highspeed
client.chat.completions.create(model="MiniMax-M2.7-highspeed", messages=[{"role":"user","content":"Hi"}])
# minimax-m3
client.chat.completions.create(model="minimax-m3", messages=[{"role": "user", "content": "Hi"}])