qwenVision
Qwen: Qwen3.6 27B
Qwen3.6 27B is a dense 27-billion-parameter language model from the Qwen Team at Alibaba, released in April 2026. It features hybrid multimodal capabilities — accepting text, image, and video inputs...
Context
262k tokens
Input / 1M tokens
$0.29
Output / 1M tokens
$3.17
Benchmark
—
Pricing
Input tokens$0.29 per 1M tokens
Output tokens$3.17 per 1M tokens
Technical details
Model IDqwen/qwen3.6-27b
Context window262k tokens
Input modalitiestext, image, video
Output modalitiestext
TokenizerQwen3
Max output tokens262,140
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-27b',
messages: [{ role: 'user', content: 'Hello!' }],
})