qwen
Qwen: Qwen3 Max
Qwen3-Max is an updated release built on the Qwen3 series, offering major improvements in reasoning, instruction following, multilingual support, and long-tail knowledge coverage compared to the January 2025 version. It...
Context
262k tokens
Input / 1M tokens
$0.78
Output / 1M tokens
$3.90
Benchmark
—
Pricing
Input tokens$0.78 per 1M tokens
Output tokens$3.90 per 1M tokens
Cache read$0.16 per 1M tokens
Cache write$0.97 per 1M tokens
Technical details
Model IDqwen/qwen3-max
Context window262k tokens
Input modalitiestext
Output modalitiestext
TokenizerQwen3
Max output tokens32,768
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-max',
messages: [{ role: 'user', content: 'Hello!' }],
})