qwenVision
Qwen: Qwen3.7 Flash
Qwen3.7 Flash is a vision-language reasoning model from Alibaba. It is suited for multimodal agents, visual coding, search, and computer interaction, with strengths in object recognition, spatial understanding, and real-world...
Context
1M tokens
Input / 1M tokens
$0.03
Output / 1M tokens
$0.13
Benchmark
—
Pricing
Input tokens$0.03 per 1M tokens
Output tokens$0.13 per 1M tokens
Cache read$0.01 per 1M tokens
Cache write$0.04 per 1M tokens
Technical details
Model IDqwen/qwen3.7-flash
Context window1M tokens
Input modalitiestext, image, video
Output modalitiestext
TokenizerQwen
Max output tokens65,536
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.7-flash',
messages: [{ role: 'user', content: 'Hello!' }],
})