首页/MiniMax M3
minimax/minimax-m3

MiniMax M3

minimax/minimax-m3
MiniMax-M3 is a multimodal foundation model from MiniMax. It supports text, image, and video inputs with text output, a 1M-token context window, and is suited for long-horizon agentic work, coding, and tool use. It is built on MiniMax Sparse Attention (MSA), which replaces full attention with KV-block selection to cut per-token compute at long context — roughly 1/20 the cost of the previous generation at 1M tokens, with substantially faster prefill and decode while retaining quality across most tasks. Trained as a native multimodal model on interleaved data and tuned for multi-turn, production-like collaboration via an interactive user-simulator framework, the model is oriented toward sustained, multi-step tasks rather than single-turn execution.
价格
输入$0.3/百万 tokens
Cached reads$0.06/百万 tokens
输出$1.2/百万 tokens
阶梯计费
每次请求输入长度输入Cached reads输出价格
0 < tokens <= 524.3K$0.3$0.06$1.2
524.3K < tokens <= 1M$1.2$0.24$4.8

使用以下代码示例来集成我们的API:

1from openai import OpenAI
2
3client = OpenAI(
4    api_key="<Your API Key>",
5    base_url="https://api.highwayapi.ai/openai"
6)
7
8response = client.chat.completions.create(
9    model="minimax/minimax-m3",
10    messages=[
11        {"role": "system", "content": "You are a helpful assistant."},
12        {"role": "user", "content": "Hello, how are you?"}
13    ],
14    max_tokens=131072,
15    temperature=0.7
16)
17
18print(response.choices[0].message.content)

信息

提供商
量化
-

支持的功能

上下文长度
1M
最大输出
131.1K
serverless
支持
函数调用
支持
结构化输出
支持
推理
支持
Input Capabilities
text, image, video
Output Capabilities
text
联系我们