qwenVision
Qwen: Qwen3.5-9B
Qwen3.5-9B is a multimodal foundation model from the Qwen3.5 family, designed to deliver strong reasoning, coding, and visual understanding in an efficient 9B-parameter architecture. It uses a unified vision-language design...
Context
262k tokens
Input / 1M tokens
$0.10
Output / 1M tokens
$0.15
Benchmark
—
Pricing
Input tokens$0.10 per 1M tokens
Output tokens$0.15 per 1M tokens
Technical details
Model IDqwen/qwen3.5-9b
Context window262k tokens
Input modalitiestext, image, video
Output modalitiestext
TokenizerQwen3
Max output tokens262,144
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.5-9b',
messages: [{ role: 'user', content: 'Hello!' }],
})