NVIDIA Nemotron 3
https://arxiv.org/abs/2512.20856
Interleaves sparse MoE layers with Mamba-2 layers; Mamba layers maintain a fixed-size recurrent state (constant memory during generation) rather than a growing KV cache. Attention layers use GQA with only 2 KV heads. Two parallel memory systems: explicit small KV cache (attention layers only) and implicit compressed history in the Mamba state. Post-trained via multi-environment RL for multi-step tool use.
At a glance
- Type
- Hybrid Mamba + sparse KV-cache, 1M-token context
- Tier
- T1
- Created
- 2025-12
- Latest release
- not applicable — not OSS
- License
- not applicable — not OSS
- GitHub
- not applicable — no GitHub repo
- Pricing
- not applicable — not commercial
- Funding
- not applicable — not commercial
Taxonomy
- storage
- kv-cache
- retrieval
- attention
- persistence
- session
- update
- read-only
- unit
- kv-token
- governance
- opaque
- conflict
- n/a
When to use
Optimised for: not applicable - research paper
Anti-fit: not applicable - research paper
Pros & cons
Pros
Constant-memory Mamba state eliminates KV-cache explosion for the majority of layers, enabling genuinely long-context inference without proportional memory growth.
Cons
Mamba state is a lossy compressed summary — information not captured is lost; memory-relevant properties not benchmarked against dedicated memory-augmented LLMs on QA or agent tasks.
Claims & capabilities
Nemotron 3 Nano (31.6B total, 3.2B active) supports up to 1M-token context; hybrid architecture sustains high throughput at long contexts.
Technical surface
- API surface
- searched not found
- Backend storage
- searched not found
- Deployment
- not applicable — not a deployable product
- Embedding model
- searched not found
- Multi-tenancy
- searched not found
- MCP
- not applicable — research paper, no deployed product
- A2A
- not applicable — research paper, no deployed product
- OpenTelemetry
- not applicable — research paper, no deployed product
Compare NVIDIA Nemotron 3 with…
Similar systems
Other recent method papers — theorized, no distinct product in the catalog, ranked by inbound references.
- Compressive Transformer T3
Maintains recent states in full resolution while compressing older memories with learned compression functions. DeepMind.
- MemGPT v2 / agent-tools T3
Already in catalog as the foundational MemGPT paper. Note: Letta is the productionised successor (cross-listed).
- Transformer-XL T3
Extends context through segment-level recurrence + caching of hidden states from prior segments. Foundational long-context architecture.
- Generative Agents T3
Park et al. — landmark agent-simulation paper. Reflection + memory stream + retrieval enable believable agent behavior.
- MemoryBank T3
Enhances LLMs with long-term memory. Early influential paper.
- Reflexion T3
Language agents with verbal reinforcement learning.