qwenVision
Qwen: Qwen3.6 Plus
Qwen 3.6 Plus builds on a hybrid architecture that combines efficient linear attention with sparse mixture-of-experts routing, enabling strong scalability and high-performance inference. Compared to the 3.5 series, it delivers...
Context
1M tokens
Input / 1M tokens
$0.33
Output / 1M tokens
$1.95
Benchmark
—
Pricing
Input tokens$0.33 per 1M tokens
Output tokens$1.95 per 1M tokens
Cache write$0.41 per 1M tokens
Technical details
Model IDqwen/qwen3.6-plus
Context window1M tokens
Input modalitiestext, image, video
Output modalitiestext
TokenizerQwen3
Max output tokens65,536
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'qwen/qwen3.6-plus',
messages: [{ role: 'user', content: 'Hello!' }],
})