Qwen3.6 Max Preview
Description
Qwen3.6-Max-Preview is Alibaba's flagship preview model with over 1 trillion parameters. It supports 262K token context, 100+ languages, and excels in agentic coding, multi-file analysis, and long-context tasks
At a Glance
Key pricing and model details available for this model.
Input price
$1.17
per 1M tokens
Output price
$7.41
per 1M tokens
Context window
246K
tokens
Hallucination rate
0%
Token Pricing
Token pricing normalized to per-million-token rates.
Input / 1M tokens
$1.17
Output / 1M tokens
$7.41
Cache Read / 1M tokens
$0.12
Token Pricing Details
Rates are shown per 1M tokens for easier comparison.
| Input / 1M tokens | $1.17 |
| Input unit | 1M tokens |
| Output / 1M tokens | $7.41 |
| Output unit | 1M tokens |
| Cache Read / 1M tokens | $0.12 |
| Cache Read unit | 1M tokens |
Feature Availability
Capabilities explicitly listed in the current payload.
LLM
Available
Vision
Not listed
Function calling
Available
Reasoning
Available
Supported Parameters
Artificial Analysis
Index scores currently reported for this model.
Intelligence Index
51.8
Coding Index
44.9
Category Radar
Aggregated from the benchmark values present for reasoning, code, math, and accuracy.
Benchmark Breakdown
Detailed benchmark results drawn from the current payload.
Intelligence Index
Overall 'how smart' score for an AI, combining reasoning, math, coding, and knowledge.
51.8
Reported score
Coding Index
How well the model handles real programming tasks.
44.9
Reported score
GPQA
Graduate-level science questions designed to be difficult to shortcut.
88.8%
Reported score
HLE
A very hard expert-level exam across a wide range of subjects.
28.9%
Reported score
SciCode
Coding tasks drawn from real scientific workflows.
46.9%
Reported score
IFBench
Measures how precisely the model follows detailed instructions.
76.6%
Reported score
LCR
Tests long-context reasoning over large documents and conversations.
69.7%
Reported score
TerminalBench Hard
A harder coding-agent benchmark for complex multi-step terminal tasks.
43.9%
Reported score
Tau2
Evaluates realistic agent behavior in tool-using support workflows.
95.9%
Reported score
Code Samples
Quick start with the Routeway API
import OpenAI from 'openai';
const openai = new OpenAI({
baseURL: "https://api.routeway.ai/v1",
apiKey: "<YOUR_API_KEY>",
});
async function main() {
const completion = await openai.chat.completions.create({
model: "qwen3.6-max-preview",
messages: [
{
role: "user",
content: "Explain quantum computing in simple terms"
}
]
});
console.log(completion.choices[0].message);
}
main();