Views
No views yet
tool_calls support| Benchmark | 8B Target | SOTA Reference |
|---|---|---|
| SWE-bench Verified | 20-40% | Klear-AgentForge: 39.4% |
| BFCL v3 | 65-75% | Klear-AgentForge: 71.5% |
| Terminal-Bench 2.0 | 15-25% | Nemotron-T-14B: 20.2% |
| Aider-Polyglot | 25-40% | Klear-AgentForge: 33.8% |
1# Stage 1: SFT on curated agent trajectories
2python train_sft.py \
3 --model nvidia/Nemotron-Terminal-8B \
4 --dataset mixed_agentic_dataset \
5 --output_dir ./nexus-coder-sft
6
7# Stage 2: GRPO with execution-verified rewards
8python train_grpo.py \
9 --model ./nexus-coder-sft \
10 --dataset nvidia/Nemotron-RL-Agentic-SWE-Pivot-v1 \
11 --output_dir ./nexus-coder-rl| Dataset | Split | Purpose | Link |
|---|---|---|---|
| SWE-bench/SWE-smith-trajectories | tool (resolved=True) | SFT: Real repo bug fixing | HF |
| nvidia/Nemotron-Agentic-v1 | interactive_agent + tool_calling | SFT: Multi-turn tool use | HF |
| xingyaoww/code-act | codeact + general | SFT: Executable code actions | HF |
| nvidia/Nemotron-RL-Agentic-SWE-Pivot-v1 | train | RL: Step-level pass-rate rewards | HF |
1@article{nemotron-terminal-2026,
2 title={Nemotron-Terminal: Scalable Training for Terminal-Capable Language Models},
3 author={NVIDIA},
4 journal={arXiv:2602.21193},
5 year={2026}
6}
7@article{klear-agentforge-2025,
8 title={Klear-AgentForge: Forging Agentic Intelligence through Posttraining Scaling},
9 author={Klear-AI},
10 journal={arXiv:2511.05951},
11 year={2025}
12}
13@article{glm5-2026,
14 title={GLM-5: from Vibe Coding to Agentic Engineering},
15 author={Zhipu AI},
16 journal={arXiv:2602.15763},
17 year={2026}
18}