Publish time
2026/4/2Model Series
千问Input type
Output type
Context Window
1,000,000Max Output Length
65,536Input Price
¥1.4 / 1M tokensOutput Price
¥8.4 / 1M tokensQwen3.6原生视觉语言系列Plus模型,展现出与当前顶尖前沿模型相媲美的卓越性能,模型效果相较3.5系列显著提升。模型在Agentic coding、前端编程、Vibe coding等代码能力、多模态万物识别、OCR、物体定位等能力上显著增强。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
No data
Throughput
48.83tps
Uptime
89.00%
Provider Model
sophnet/qwen/qwen3.6-plus
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
1,000,000
Max Output
65,536
Input Price
¥1.4 / 1M tokens
Output Price
¥8.4 / 1M tokens
TTFT
3.88s
Throughput
41.04tps
Uptime
94.00%
Provider Model
alibaba/qwen/qwen3.6-plus
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
1,000,000
Max Output
65,536
Input Price
¥1.4 / 1M tokens
Output Price
¥8.4 / 1M tokens
Compare different providers across Zhinao API
39.05 tok/s
2.15 s
Uptime for qwen/qwen3.6-plus across all providers
Zhinao API normalizes requests and responses across providers for you
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.360.cn/v1",
apiKey: process.env.ZHINAO_API_KEY,
});
const response = await client.chat.completions.create({
model: "qwen/qwen3.6-plus",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);