qwenVision
Qwen: Qwen3.6 Flash
Qwen3.6 Flash is a fast, efficient language model from Alibaba's Qwen 3.6 series. It supports text, image, and video input with a 1M token context window. Tiered pricing kicks in...
Context
1M tokens
Input / 1M tokens
$0.19
Output / 1M tokens
$1.13
Benchmark
—
Pricing
Input tokens$0.19 per 1M tokens
Output tokens$1.13 per 1M tokens
Cache write$0.23 per 1M tokens
Technical details
Model IDqwen/qwen3.6-flash
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-flash',
messages: [{ role: 'user', content: 'Hello!' }],
})