M3 与 Highspeed 并列
旗舰 M3 做 Agent 与多模态;循环对延迟敏感时用 M2.7 Highspeed。
MiniMax M3 与 M2.7 Highspeed,共用一套 OpenAI 兼容 Base URL。Agent、推理与低延迟型号同目录。
为什么选 SupaNexus
旗舰 M3 做 Agent 与多模态;循环对延迟敏感时用 M2.7 Highspeed。
Chat Completions、流式、现有重试逻辑都不用改。只换模型 ID。
配额、计量与零留存对 MiniMax 与对 DeepSeek 完全一样。
快速开始
官方 OpenAI SDK。模型 ID 为 minimax/minimax-m3。
https://api.supanexus.ai/v1
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.supanexus.ai/v1",
api_key="sk-snx-...",
)
response = client.chat.completions.create(
model="minimax/minimax-m3",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
常见问题
M3 与 Highspeed、ID 与兼容性。
minimax/minimax-m3 是当前旗舰(Agent、多模态)。需要更快的 M2.7 通道时用 minimax/minimax-m2.7-highspeed。
完整 Public API ID,例如 minimax/minimax-m3。不要去掉厂商前缀。
能。指向 https://api.supanexus.ai/v1,使用 SupaNexus 项目 Key。