text
silvamux/
gpt-5.6-lunaGPT-5.6 Luna是GPT-5.6系列中偏重速度与成本效率的模型,适合批量分类、信息抽取、客服问答和延迟敏感的轻量工作流。
价格
以单次请求的输入上下文长度判定档位,Tune 与 Pro 采用相同的阶梯价格。
| 输入上下文 | 输入 | 输出 | 缓存读取 | 缓存写入 |
|---|---|---|---|---|
| ≤ 272K tokens | $0.2 | $1.2 | $0.02 | $0.25 |
| > 272K tokens | $0.4 | $1.8 | $0.04 | $0.5 |
模型能力
综合能力 85 分(优秀)。优势集中在 代码生成(100%)、长文本处理(98%)、文本理解(97%)。相对短板为 智能体协同(56%)。适合 代码研发 / 内容创作 等场景。
85/ 100
专项进阶能力
8 项智能体协同56%
7 题 · 主/客观混合
代码生成100%
10 题 · 客观
代码理解与调试85%
12 题 · 主观
创意写作81%
17 题 · 主观
信息检索 / RAG94%
13 题 · 主/客观混合
数学与科学推理86%
14 题 · 客观
长文本处理98%
3 题 · 主观
多语言能力87%
10 题 · 主/客观混合
通用基础能力
3 项通识知识81%
15 题 · 主/客观混合
文本理解97%
5 题 · 主观
逻辑推理76%
20 题 · 主/客观混合
安全与合规能力
2 项幻觉控制81%
9 题 · 主观
指令遵循80%
14 题 · 主观
服务表现
Gpt 5.6 Luna
gpt-5.6-luna- 延迟
- 7.68s
- 吞吐量
- 5.59Ktokens/min
- 可用率
- 100.0%
可用率
100.0%- 完成率
- 100%
- 缓存命中率
- 0.0%
- 累计评测耗时
- 1811.4s
- Token 消耗
- 168,840tokens
- 平均请求次数
- 1.0次
- TPM
- 5,592tokens/min
- QPM
- 4.9req/min
Gpt 5.6 Luna 的示例代码和 API
Pro
gpt-5.6-luna/api/v0/chat/completions/api/v1/responsescurl https://silvamux.io/api/v1/chat/completions \
-H "Authorization: Bearer 你的API密钥" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-luna",
"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="gpt-5.6-luna",
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\":\"gpt-5.6-luna\",\"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: 'gpt-5.6-luna',
messages: [{ role: 'user', content: '你好,请介绍一下自己' }],
})
console.log(response.choices[0].message.content)