Nex N2 Pro
by nex-agi · family nex
Facts
| Release date | 2026-06-08 |
|---|---|
| Retired date | — |
| Knowledge cutoff | — |
| Context (max) | 262,144 |
| Max output | — |
| Modalities | text, image → text |
| Aliases | nex-n2-pro |
| Open weights | yes (nex-agi/Nex-N2-Pro) |
| Description | Agentic MoE flagship on the Qwen3.5 architecture: 397B total / 17B active, 262K context, text+image input. Open weights; $0.25/$1.00 per Mtok on OpenRouter. |
Unknown values are shown as —.
Offerings
| Provider | Wire ID | Variant | Endpoint | Protocol | Status | Price (USD / Mtok) | Reasoning |
|---|---|---|---|---|---|---|---|
| OpenRouter | nex-agi/nex-n2-pro | pro | chat-completions | openai-chat | retired | 0.25 / 1.00 | effort · default on · returns reasoning_content · round-trips reasoning_content |
Reasoning controls
OpenRouter· nex-agi/nex-n2-pro· chat-completions effort
reasoning.effort nonelowmedium●highxhighmax
effort · default on · returns reasoning_content · round-trips reasoning_content
Example requests
OpenRouter · openai-chat · nex-agi/nex-n2-pro
curl 'https://openrouter.ai/api/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "nex-agi/nex-n2-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
}'Python (requests)
import requests
resp = requests.post(
"https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "nex-agi/nex-n2-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "nex-agi/nex-n2-pro",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
}),
})
console.log(await resp.json())- ⚠ Responses include
reasoning_contentartifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).