Models / Qwen3.6 Plus Preview
Qwen3.6 Plus Preview
Qwen Tier 1proprietaryLatest Qwen flagship with 1M context window, always-on chain-of-thought reasoning, and native function calling. Currently in free preview.
qwen/qwen3.6-plus-previewContext Window
1M
Max Output
66K
Providers
1
Released
2026-03
Capabilities
chatcodereasoningthinkingtoolsfunction_callingstreamingjson_mode
Pricing by Provider
| Provider | Input $/1M | Output $/1M | Latency p50 | Latency p95 | Status |
|---|---|---|---|---|---|
| alibaba | Free | Free | 500ms | 1500ms |
Quick Start
Python
import magicrouter
mr = magicrouter.Client(
provider_keys={"alibaba": "your-api-key"}
)
response = mr.chat(
"qwen/qwen3.6-plus-preview",
"Your prompt here"
)
print(response.choices[0].message.content)TypeScript
import { MagicRouter } from "magicrouter";
const mr = new MagicRouter({
providerKeys: { alibaba: "your-api-key" }
});
const response = await mr.chat({
model: "qwen/qwen3.6-plus-preview",
messages: [{ role: "user", content: "Your prompt here" }]
});
console.log(response.choices[0].message.content);cURL
curl https://dashscope-intl.aliyuncs.com/compatible-mode/v1/chat/completions \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.6-plus-preview",
"messages": [{"role": "user", "content": "Your prompt here"}]
}'