qwenVision
Qwen: Qwen3.5-27B
The Qwen3.5 27B native vision-language Dense model incorporates a linear attention mechanism, delivering fast response times while balancing inference speed and performance. Its overall capabilities are comparable to those of...
Context
262k tokens
Input / 1M tokens
$0.20
Output / 1M tokens
$1.56
Benchmark
—
Pricing
Input tokens$0.20 per 1M tokens
Output tokens$1.56 per 1M tokens
Technical details
Model IDqwen/qwen3.5-27b
Context window262k 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.5-27b',
messages: [{ role: 'user', content: 'Hello!' }],
})