qwenVision
Qwen: Qwen3.8 Flash
Qwen3.8 Flash is a multimodal reasoning model from Alibaba. It is suited for coding assistance, agentic workflows, visual understanding, document and codebase analysis, desktop interaction, chart analysis, and long-video analysis.
Context
1M tokens
Input / 1M tokens
$0.16
Output / 1M tokens
$0.47
Benchmark
—
Pricing
Input tokens$0.16 per 1M tokens
Output tokens$0.47 per 1M tokens
Cache read$0.02 per 1M tokens
Cache write$0.20 per 1M tokens
Technical details
Model IDqwen/qwen3.8-flash
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-flash',
messages: [{ role: 'user', content: 'Hello!' }],
})