qwenVision
Qwen: Qwen3.8 Max
Qwen3.8 Max is the flagship model in Alibaba's Qwen3.8 series, the general-availability successor to the Qwen3.8 Max Preview. It is a multimodal reasoning model intended for complex reasoning, visual understanding,...
Context
1M tokens
Input / 1M tokens
$2
Output / 1M tokens
$6
Benchmark
—
Pricing
Input tokens$2 per 1M tokens
Output tokens$6 per 1M tokens
Cache read$0.25 per 1M tokens
Cache write$2.50 per 1M tokens
Technical details
Model IDqwen/qwen3.8-max
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-max',
messages: [{ role: 'user', content: 'Hello!' }],
})