qwen
Qwen: Qwen3 30B A3B
Qwen3, the latest generation in the Qwen large language model series, features both dense and mixture-of-experts (MoE) architectures to excel in reasoning, multilingual support, and advanced agent tasks. Its unique...
Context
131k tokens
Input / 1M tokens
$0.12
Output / 1M tokens
$0.50
Benchmark
—
Pricing
Input tokens$0.12 per 1M tokens
Output tokens$0.50 per 1M tokens
Technical details
Model IDqwen/qwen3-30b-a3b
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-30b-a3b',
messages: [{ role: 'user', content: 'Hello!' }],
})