qwen
Qwen: Qwen3 32B
Qwen3-32B is a dense 32.8B parameter causal language model from the Qwen3 series, optimized for both complex reasoning and efficient dialogue. It supports seamless switching between a "thinking" mode for...
Context
131k tokens
Input / 1M tokens
$0.08
Output / 1M tokens
$0.28
Benchmark
—
Pricing
Input tokens$0.08 per 1M tokens
Output tokens$0.28 per 1M tokens
Technical details
Model IDqwen/qwen3-32b
Context window131k tokens
Input modalitiestext
Output modalitiestext
TokenizerQwen3
Max output tokens16,384
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-32b',
messages: [{ role: 'user', content: 'Hello!' }],
})