nex-agiVision
Nex AGI: Nex-N2-Pro
Nex-N2-Pro is an agentic mixture-of-experts model from Nex AGI, with 17B active parameters out of 397B total. Built on the Qwen3.5 architecture, it accepts text and image input and produces...
Context
262k tokens
Input / 1M tokens
$0.50
Output / 1M tokens
$2.50
Benchmark
—
Pricing
Input tokens$0.50 per 1M tokens
Output tokens$2.50 per 1M tokens
Cache read$0.25 per 1M tokens
Technical details
Model IDnex-agi/nex-n2-pro
Context window262k tokens
Input modalitiestext, image
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: 'nex-agi/nex-n2-pro',
messages: [{ role: 'user', content: 'Hello!' }],
})