Qwen3.6 Max Preview
Qwen
qwen/qwen3.6-max-preview
Strongest Qwen preview
Context Window
262K
262,144 tokens
Max Output
66K
65,536 tokens
About this model
Qwen 3.6 Max Preview is the strongest Qwen text model currently listed on Bailian, aimed at harder reasoning, complex coding, and high-quality bilingual generation. It supports 256K context, thinking mode, and context caching.
Use it as the flagship Qwen option when quality matters more than lowest cost.
Highlights
Strongest Qwen
256K context
Thinking mode
Context cache
Best For
Complex reasoningHigh-quality codingBilingual generationArchitecture review
2026-04-02MoE TransformerProprietary
Capabilities
ChatReasoningCodecache
Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $1.31 |
| Output / 1M | $7.88 |
| Cache Read | $0.263 |
| Cache Write | $1.64 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.chat.completions.create( model="qwen/qwen3.6-max-preview", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)