Views
No views yet

Qwen3.5-397B-A17B) and Nex-N2-mini (built on Qwen3.5-35B-A3B-Base), covering different latency and quality trade-offs. The table below reports their scores alongside leading proprietary and open models across our full evaluation suite.| Benchmark | Nex-N2-mini | Nex-N2-Pro | GPT-5.5 | Opus 4.7 | Kimi-K2.6 | GLM-5.1 | MiniMax M3 | DeepSeek-V4-Pro |
|---|---|---|---|---|---|---|---|---|
| Agent | ||||||||
| BrowseComp | 74.1 | 83.7 | 84.4 | 79.8 | 83.2 | 79.3 | 83.5 | 83.4 |
| GDPval | 1402 | 1585 | 1769 | 1753 | 1481 | 1535 | - | 1554 |
| Toolathlon | 33.3 | 51.9 | 55.6 | 52.8 | 50.0 | 40.7 | - | 51.8 |
| WildClawBench | 47.7 | 53.5 | 58.2 | 62.2 | - | 48.2 | - | 43.7 |
| WideSearch | 62.0 | 75.6 | - | - | 80.8 | - | - | - |
| TAU3 | 65.9 | 71.1 | - | - | - | 70.6 | - | - |
| Coding & SWE | ||||||||
| SWE-Bench Pro | 50.2 | 58.8 | 58.6 | 64.3 | 58.6 | 58.4 | 59.0 | 55.4 |
| Terminal-Bench 2.1 | 60.7 | 75.3 | 83.4 | 69.7 | - | 58.7 | 66.0 | 72.0 |
| DeepSWE | 8.0 | 33.6 | 70 | 54 | 24 | 18 | - | 8 |
| SWE-Bench Verified | 74.4 | 80.8 | 82.9 | 87.6 | 80.2 | - | 80.5 | 80.6 |
| SWE Atlas QnA | 31.5 | 37.9 | 45.4 | 45.2 | - | - | 37.9 | - |
| SWE Atlas RF | 30.0 | 32.9 | 44.8 | 48.6 | - | - | - | - |
| SWE Atlas TW | 23.3 | 40.0 | 42.6 | 38.2 | - | - | 30.8 | - |
| General & Reasoning | ||||||||
| GPQA Diamond | 82.6 | 90.7 | 93.6 | 94.2 | 90.5 | 86.2 | - | 90.1 |
| IFEval | 89.1 | 94.0 | - | - | 94.5 | 94.5 | - | 91.9 |
| Apex | 9.4 | 36.5 | - | - | 24.0 | 11.5 | - | 38.3 |
Note: For the best performance with Nex-series models, we recommend serving them with our customizedsglangfork.
sglang fork:1# Use the customized `sglang` fork
2git clone https://github.com/nex-agi/sglang.git
3cd sglang
4
5# Install the python packages
6pip install --upgrade pip
7pip install -e "python"1# Multi-node (2 nodes). Run the same command on every node with:
2# <node-rank> = 0 on the head node, 1 on the other node
3# <node0-ip> = IP of the head node (reachable from all others)
4python -m sglang.launch_server \
5 --model-path /path/to/your/model \
6 --tp 16 \
7 --nnodes 2 \
8 --node-rank <node-rank> \
9 --dist-init-addr <node0-ip>:20000 \
10 --reasoning-parser qwen3 \
11 --tool-call-parser qwen3_coder \
12 --mamba-scheduler-strategy extra_buffer1python -m sglang.launch_server \
2 --model-path /path/to/your/model \
3 --tp 2 \
4 --reasoning-parser qwen3 \
5 --tool-call-parser qwen3_coder \
6 --mamba-scheduler-strategy extra_buffersglang fork preinstalled: nexagi/sglang:v0.5.12. The launch command is the same as above.1# Multi-node (2 nodes). Run the same command on every node with:
2# <node-rank> = 0 on the head node, 1 on the other node
3# <node0-ip> = IP of the head node (reachable from all others)
4docker run --gpus all --shm-size 32g --network host \
5 -v /path/to/your/model:/model \
6 nexagi/sglang:v0.5.12 \
7 python3 -m sglang.launch_server \
8 --model-path /model \
9 --tp 16 \
10 --nnodes 2 \
11 --node-rank <node-rank> \
12 --dist-init-addr <node0-ip>:20000 \
13 --host 0.0.0.0 --port 30000 \
14 --reasoning-parser qwen3 \
15 --tool-call-parser qwen3_coder \
16 --mamba-scheduler-strategy extra_buffer1docker run --gpus all --shm-size 32g --ipc=host \
2 -p 30000:30000 \
3 -v /path/to/your/model:/model \
4 nexagi/sglang:v0.5.12 \
5 python3 -m sglang.launch_server \
6 --model-path /model \
7 --tp 2 \
8 --host 0.0.0.0 --port 30000 \
9 --reasoning-parser qwen3 \
10 --tool-call-parser qwen3_coder \
11 --mamba-scheduler-strategy extra_buffertemperature: 0.7top_p: 0.95top_k: 40--tool-call-parser qwen3_coder flag when launching the server:python -m sglang.launch_server --model-path /path/to/your/model --tool-call-parser qwen3_coder--reasoning-parser qwen3 flag to parse the reasoning content separately from the final response. It can be combined with the function-calling parser above:python -m sglang.launch_server --model-path /path/to/your/model --tool-call-parser qwen3_coder --reasoning-parser qwen3