MiniMax's all-round assistant model — strong general performance at competitive flat pricing through the Bridge OpenAI-compatible endpoint.
ValueBest for: All-round assistant at value pricing.
| Specification | Value |
|---|---|
| Bridge price | $0.28 / $0.59 per 1M tokens |
| Cached input | $0.06 per 1M tokens |
| Context window | 128K tokens |
| Max output | 8,192 tokens |
| Strengths | General assistant, Chinese-language |
from openai import OpenAI
client = OpenAI(base_url="https://bridge.computeindex.net/v1", api_key="sk-bridge-YOUR_KEY")
completion = client.chat.completions.create(
model="minimax-m2.7",
messages=[{"role": "user", "content": "Draft a polite out-of-office reply."}],
)
print(completion.choices[0].message.content)
Which endpoint? Standard /v1/chat/completions with model="minimax-m2.7".
How is it billed? Per token from the upstream usage field, cached-input discount applied automatically.