qwenVision
Qwen: Qwen3.8 27B
Qwen3.8 27B is an open-weight dense vision-language model from Qwen. It is suited for coding, professional workflows, research, multimodal interaction, and long-running agent tasks, with flexible thinking that can be...
Context
1M tokens
Input / 1M tokens
$0.42
Output / 1M tokens
$2.55
Benchmark
—
Pricing
Input tokens$0.42 per 1M tokens
Output tokens$2.55 per 1M tokens
Cache read$0.08 per 1M tokens
Cache write$0.53 per 1M tokens
Technical details
Model IDqwen/qwen3.8-27b
Context window1M tokens
Input modalitiestext, image, video
Output modalitiestext
TokenizerQwen
Max output tokens131,072
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.8-27b',
messages: [{ role: 'user', content: 'Hello!' }],
})