Overview
Llama-3.3-Nemotron-Super-49B-v1.5 is a reasoning and chat model released by NVIDIA on July 25, 2025, as part of the Llama Nemotron collection.
- License: NVIDIA Open Model License (+ Llama 3.3 Community License)
- Context length: 128K tokens
- Parameters: 49B dense, distilled from Llama-3.3-70B
- Languages: English plus German, French, Italian, Portuguese, Hindi, Spanish, Thai
- Minimum hardware: ~48 GB VRAM at 4-bit; fits a single H100/H200
- Strengths: math and code reasoning, tool calling, RAG, agentic chat
Highlights
- Distilled from Llama-3.3-70B — Neural Architecture Search trades accuracy against efficiency into a 49B model.
- Single-GPU fit — designed to run on one H200-class GPU with a 128K-token context.
- Multi-stage post-training — SFT on math/code/science/tools plus RL (RPO, RLVR, iterative DPO).
- Agentic-ready — tuned for reasoning, chat, RAG, and tool calling with a toggleable thinking mode.
What it's good at
The model is built for reasoning, instruction following, and agentic work such as RAG and tool calling. Post-training combined supervised fine-tuning on math, code, science, and tool use with several reinforcement-learning stages (RPO for chat, RLVR for reasoning, and iterative DPO for tool calling). On NVIDIA's own evaluations in reasoning-on mode it scores 97.4 on MATH500, 87.5 on AIME 2024, 73.58 on LiveCodeBench, 71.97 on GPQA, and 71.75 on BFCL v3 for function calling. It also ships a dual mode: an empty system prompt gives a full thinking trace, while /no_think turns reasoning off for faster direct answers.
Running locally
The weights run with Transformers (using trust_remote_code) and serve well under vLLM 0.9.2. NVIDIA tested it on 2x H100-80GB or 2x A100-80GB and recommends Ampere or Hopper GPUs. Full bf16 inference needs roughly 100 GB of memory across GPUs; with 4-bit quantization it can run on around 48 GB. Recommended sampling is temperature 0.6 and top-p 0.95 for reasoning on, and greedy decoding for reasoning off. A tool-call parser is included in the repo for vLLM's auto tool-choice mode.
License
Use is governed by the NVIDIA Open Model License, with the additional Llama 3.3 Community License Agreement because the model is built on Llama. NVIDIA states the model is ready for commercial use. The weights are openly downloadable from Hugging Face, so you can self-host and deploy it in production subject to those license terms.
