text
silvamux/
claude-opus-4-6Claude Opus 4.6是Anthropic面向高难度任务的模型,能够处理复杂代码库、深入分析和多步骤智能体工作流,适合研发、研究及专业内容生产。
价格
Tune 与 Pro 采用相同的价格。
| 输入上下文 | 输入 | 输出 | 缓存读取 | 缓存写入 |
|---|---|---|---|---|
| - | $5 / 1M tokens | $25 / 1M tokens | $0.5 / 1M tokens | $6.25 / 1M tokens |
模型能力
综合能力 79 分(良好)。优势集中在 数学与科学推理(100%)、文本理解(95%)、创意写作(86%)。相对短板为 智能体协同(51%)。适合 代码研发 / 内容创作 等场景。
79/ 100
专项进阶能力
8 项智能体协同51%
7 题 · 主/客观混合
代码生成80%
10 题 · 客观
代码理解与调试79%
12 题 · 主观
创意写作86%
17 题 · 主观
信息检索 / RAG73%
13 题 · 主/客观混合
长文本处理73%
3 题 · 主观
数学与科学推理100%
14 题 · 客观
多语言能力81%
10 题 · 主/客观混合
通用基础能力
3 项通识知识70%
15 题 · 主/客观混合
文本理解95%
5 题 · 主观
逻辑推理72%
20 题 · 主/客观混合
安全与合规能力
2 项幻觉控制81%
9 题 · 主观
指令遵循80%
14 题 · 主观
服务表现
Claude Opus 4.6
claude-opus-4-6- 延迟
- 13.54s
- 吞吐量
- 3.53Ktokens/min
- 可用率
- 100.0%
可用率
100.0%- 完成率
- 100%
- 缓存命中率
- 0.0%
- 累计评测耗时
- 3138.1s
- Token 消耗
- 184,857tokens
- 平均请求次数
- 1.0次
- TPM
- 3,534tokens/min
- QPM
- 2.8req/min
Claude Opus 4.6 的示例代码和 API
Pro
claude-opus-4-6/api/v0/chat/completions/api/v1/chat/completions/api/anthropic/v1/messagescurl https://silvamux.io/api/v1/chat/completions \
-H "Authorization: Bearer 你的API密钥" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-4-6",
"messages": [{"role": "user", "content": "你好,请介绍一下自己"}]
}'# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://silvamux.io/api/v1",
api_key="你的API密钥",
)
response = client.chat.completions.create(
model="claude-opus-4-6",
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\":\"claude-opus-4-6\",\"messages\":[{\"role\":\"user\",\"content\":\"你好,请介绍一下自己\"}]}";
Request request = new Request.Builder()
.url("https://silvamux.io/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://silvamux.io/api/v1',
apiKey: '你的API密钥',
})
const response = await client.chat.completions.create({
model: 'claude-opus-4-6',
messages: [{ role: 'user', content: '你好,请介绍一下自己' }],
})
console.log(response.choices[0].message.content)