text
silvamux/
minimax-m2.7价格
Tune 与 Pro 采用相同的价格。
| 输入上下文 | 输入 | 输出 | 缓存读取 | 缓存写入 |
|---|---|---|---|---|
| - | ¥2.1 / 1M tokens | ¥8.4 / 1M tokens | ¥0.42 / 1M tokens | ¥2.625 / 1M tokens |
模型能力
综合能力 62 分(良好)。优势集中在 数学与科学推理(86%)、指令遵循(84%)、文本理解(84%)。相对短板为 代码生成(0%)。适合 结构化输出 / 指令任务 / 智能客服 / 内容分析 等场景。在 代码生成 类任务上建议结合人工复核或专项验证。
62/ 100
专项进阶能力
8 项智能体协同41%
7 题 · 主/客观混合
代码生成0%
10 题 · 客观
代码理解与调试74%
12 题 · 主观
创意写作70%
17 题 · 主观
信息检索 / RAG53%
13 题 · 主/客观混合
长文本处理65%
3 题 · 主观
数学与科学推理86%
14 题 · 客观
多语言能力60%
10 题 · 主/客观混合
通用基础能力
3 项通识知识57%
15 题 · 主/客观混合
文本理解84%
5 题 · 主观
逻辑推理77%
20 题 · 主/客观混合
安全与合规能力
2 项幻觉控制61%
9 题 · 主观
指令遵循84%
14 题 · 主观
服务表现
Minimax M2.7 Tune
minimax-m2.7@tune- 延迟
- 45.26s
- 吞吐量
- 1.05Ktokens/min
- 可用率
- 93.96%
可用率
93.96%- 完成率
- 94%
- 缓存命中率
- 0.0%
- 累计评测耗时
- 20719.5s
- Token 消耗
- 364,220tokens
- 平均请求次数
- 1.1次
- TPM
- 1,055tokens/min
- QPM
- 0.4req/min
Minimax M2.7
minimax-m2.7- 延迟
- 44.53s
- 吞吐量
- 1.57Ktokens/min
- 可用率
- 96.64%
可用率
96.64%- 完成率
- 97%
- 缓存命中率
- 1.9%
- 累计评测耗时
- 15496.1s
- Token 消耗
- 405,164tokens
- 平均请求次数
- 1.0次
- TPM
- 1,569tokens/min
- QPM
- 0.6req/min
Minimax M2.7 的示例代码和 API
Tune
minimax-m2.7@tune/api/v0/chat/completions/api/v1/responses/api/anthropic/v1/messagesPro
minimax-m2.7/api/v0/chat/completions/api/v1/responses/api/anthropic/v1/messagescurl https://www.silvamux.com/api/v1/chat/completions \
-H "Authorization: Bearer 你的API密钥" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax-m2.7",
"messages": [{"role": "user", "content": "你好,请介绍一下自己"}]
}'# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://www.silvamux.com/api/v1",
api_key="你的API密钥",
)
response = client.chat.completions.create(
model="minimax-m2.7",
messages=[
{"role": "user", "content": "你好,请介绍一下自己"}
],
)
print(response.choices[0].message.content)// Gradle: implementation(__HL_SLOT_0__)
import okhttp3.*;
OkHttpClient client = new OkHttpClient();
MediaType json = MediaType.get("application/json");
String payload = "{\"model\":\"minimax-m2.7\",\"messages\":[{\"role\":\"user\",\"content\":\"你好,请介绍一下自己\"}]}";
Request request = new Request.Builder()
.url("https://www.silvamux.com/api/v1/chat/completions")
.header("Authorization", "Bearer 你的API密钥")
.post(RequestBody.create(payload, json))
.build();
try (Response response = client.newCall(request).execute()) {
System.out.println(response.body().string());
}// npm install openai
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://www.silvamux.com/api/v1',
apiKey: '你的API密钥',
})
const response = await client.chat.completions.create({
model: 'minimax-m2.7',
messages: [{ role: 'user', content: '你好,请介绍一下自己' }],
})
console.log(response.choices[0].message.content)