text·image·video
silvamux/
qwen3.6-plusQwen3.6 Plus是一款重视推理与知识获取的语言模型,能够完成数学科学分析、检索增强问答和多来源资料整合,适合研究、教育与企业知识场景。
Pricing
Tiers are determined by the input context length of each request; Tune and Pro share the same tiered prices.
| Input context | Input | Output | Cache read | Cache write |
|---|---|---|---|---|
| ≤ 262.144K tokens | ¥2 | ¥12 | ¥0.2 | ¥2.5 |
| > 262.144K tokens | ¥8 | ¥48 | ¥0.8 | ¥10 |
Capabilities
Qwen3.6 Plus在本轮能力评测中综合得分84,整体表现优秀。其文本理解(93%)和数学与科学推理(93%)表现突出,能够分析文档语义、提取关键信息并处理复杂问答,并处理数学求解、科学分析和结构化推理任务。对企业知识库团队、AI 应用开发者和研究人员而言,它适合用于资料检索、文档问答、信息抽取和检索增强生成场景,解决从大量资料中找到相关信息,并形成可用于后续决策的回答;信息检索/RAG(87%)也为相关任务提供补充。在能力边界上,逻辑推理(72%)相对较弱,在复杂多层推导任务中,建议核验中间过程而非只采信最终答案。
84/ 100
专项进阶能力
8 items智能体协同85%
7 questions · 主/客观混合
代码生成80%
10 questions · 客观
代码理解与调试77%
12 questions · 主/客观混合
创意写作80%
17 questions · 主观
信息检索 / RAG87%
13 questions · 主/客观混合
长文本处理85%
3 questions · 主观
数学与科学推理93%
14 questions · 客观
多语言能力86%
10 questions · 主/客观混合
通用基础能力
3 items通识知识80%
15 questions · 主/客观混合
文本理解93%
5 questions · 主观
逻辑推理73%
20 questions · 主/客观混合
安全与合规能力
2 items幻觉控制87%
9 questions · 主观
指令遵循81%
14 questions · 主观
Performance
Qwen3.6 Plus
qwen3.6-plus- 延迟
- 8.97s
- 吞吐量
- 14.28Ktokens/min
- 可用率
- 99.5%
Availability
99.5%- 完成率
- 96%
- 缓存命中率
- 动态变化
- 累计评测耗时
- 7544.4s
- Token 消耗
- 1,795,053tokens
- 平均请求次数
- 9.2次
- TPM
- 14,276tokens/min
- QPM
- 1.8req/min
Qwen3.6 Plus example code and API
Pro
qwen3.6-plus/api/v0/chat/completions/api/v1/chat/completions/api/anthropic/v1/messagescurl https://www.silvamux.com/api/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.6-plus",
"messages": [{"role": "user", "content": "Hello, please introduce yourself"}]
}'# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://www.silvamux.com/api/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="qwen3.6-plus",
messages=[
{"role": "user", "content": "Hello, please introduce yourself"}
],
)
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\":\"qwen3.6-plus\",\"messages\":[{\"role\":\"user\",\"content\":\"Hello, please introduce yourself\"}]}";
Request request = new Request.Builder()
.url("https://www.silvamux.com/api/v1/chat/completions")
.header("Authorization", "Bearer YOUR_API_KEY")
.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: 'YOUR_API_KEY',
})
const response = await client.chat.completions.create({
model: 'qwen3.6-plus',
messages: [{ role: 'user', content: 'Hello, please introduce yourself' }],
})
console.log(response.choices[0].message.content)