NVIDIA Nemotron 3 Embed Ranks #1 Overall on RTEB, Advancing Agentic Retrieval

Retrieval is critical in multi-step agentic workflows where poor retrieval can cause agents to fetch irrelevant context, re-query, waste token budget, and carry noise into later reasoning steps.
Today, we are releasing NVIDIA Nemotron 3 Embed , a collection of open and commercially available embedding models designed to improve retrieval quality while giving developers practical deployment options for production-scale RAG, agentic retrieval, code retrieval, and agent memory.
The collection includes three open models that achieve state-of-the-art retrieval across the accuracy-efficiency curve, led by an 8B model that tops the RTEB leaderboard and efficient 1B variants built for production-scale deployment:
Table 1. Nemotron 3 Embed Model Usability and Deployment Matrix.
Figure 1. RTEB Multilingual Leaderboard screenshot (July 15, 2026) showing Nemotron-3-Embed-8B-BF16 ranked as #1.
Key Features
Beyond the RTEB result, Nemotron 3 Embed introduces a production-ready feature set for enterprise retrieval deployments:
Evaluation: Retrieval Quality, Agentic Efficiency, and Deployment Tradeoffs
We evaluate Nemotron 3 Embed across three dimensions: retrieval quality, downstream agentic efficiency, and deployment tradeoffs. The 8B model establishes the model collection’s quality ceiling, while the 1B BF16 and NVFP4 variants bring the same retrieval-focused design to lower-cost and higher-throughput deployment settings.
RTEB Leadership and Strong Gains Across Retrieval Benchmarks
We first evaluated the models on RTEB , where Nemotron-3-Embed-8B-BF16 ranks #1. We also tested these models across ViDoRe V3 Text, and MMTEB Retrieval and LongEmbed using average NDCG@10.
Figure 2. Retrieval accuracy using average NDCG@10 across RTEB, ViDoRe V3 Text, MMTEB Retrieval and LongEmbed, comparing the Nemotron 3 Embed models with prior-generation Nemotron baselines.
Why Better Retrieval Matters for Agents
To evaluate retrieval in an agentic setting, we use a search agent powered by Nemotron 3 Ultra and vary the embedding model used by the retrieval system. Better retrieval can return relevant evidence earlier, helping the agent avoid repeated searches, unnecessary reasoning turns, and extra context inspection. We compare average retrieval accuracy with estimated downstream agentic token cost per query across ViDoRe V3, BRIGHT , and BrowseComp-Plus .
Figure 3. Average retrieval accuracy versus downstream agentic token cost per query across ViDoRe V3, BRIGHT, and BrowseComp-Plus.
Evaluation note: The search agent uses Nemotron 3 Ultra. Downstream token cost is estimated from Nemotron 3 Ultra input/output token counts using the GPT-5.5 pricing formula.
Figure 3 shows that stronger retrieval reduces downstream agentic token cost. More accurate retrievers return relevant evidence earlier, which helps agents complete tasks with fewer repeated searches and fewer reasoning turns. In these evaluations, the Nemotron 3 Embed models improve the agentic retrieval frontier, with the 8B model delivering both the highest average retrieval accuracy and the lowest estimated downstream token cost across ViDoRe V3, BRIGHT, and BrowseComp-Plus.
Scaling Retrieval with NVFP4 on Blackwell
For high-throughput deployments, teams often choose smaller embedding models to meet latency and cost targets. Nemotron-3-Embed-1B-NVFP4 is designed to narrow the gap between serving efficiency and retrieval quality by using native NVFP4 acceleration on NVIDIA Blackwell architectures . The model quantizes the weights and activations of linear layers to NVFP4 for efficient inference, and uses Quantization-Aware Distillation (QAD) to help recover accuracy for long input sequences.
Figure 4. ViDoRe V3 retrieval accuracy versus serving efficiency, comparing Nemotron-3-Embed-1B-NVFP4 with selected smaller open embedding baselines, including Qwen3-Embedding-0.6B and EmbeddingGemma-300M.
Day 0 Performant NIM
For production-scale retrieval systems, the serving stack also needs to preserve that efficiency under real request loads, across different input sequence lengths and hardware targets. To make Nemotron 3 Embed performant at enterprise scale today, we are also releasing an optimized NVIDIA NIM microservice for the 1B model. As shown in Figure 5, the Rust-based Nemotron 3 Embed NIM matches or outperforms the vLLM checkpoint on NVIDIA GB200 and RTX PRO 6000 GPUs across ISLs of 256 & 1024.
Figure 5. Nemotron 3 Embed NIM serving performance compared with the vLLM checkpoint on NVIDIA GB200 and RTX PRO 6000 GPUs.
How We Built the Nemotron 3 Embed Models
Nemotron-3-Embed-8B-BF16 adapts the Ministral-3-8B-Instruct-2512 backbone by converting its causal decoder into a bidirectional encoder for full-sequence retrieval. The model is trained with contrastive pre-training on a blend of web-sourced and synthetic text pairs, then fine-tuned on curated multilingual retrieval datasets across domains such as legal, finance, medical, business, and education. This 8B model serves as the flagship embedding model, while earlier 8B teacher checkpoints from the same development line were used to distill the efficient 1B variants.
Scaling Down to 1B
The 1B model is not a small retriever trained from scratch. We first applied the bidirectional adaptation recipe to the Ministral-3-3B-Instruct-2512 backbone to establish a 3B retriever base, then compressed it through two-rounds of structured pruning and distillation.
First, the 3B parent model was compressed to a 2B intermediate footprint using NVIDIA ModelOpt ’s mcore_minitron Neural Architecture Search engine. The NAS pipeline searched across hidden width, FFN size, attention heads, and depth under a strict parameter budget to identify an efficient architecture for retrieval workloads.
The resulting 2B intermediate model was then distilled from an 8B teacher checkpoint to recover ranking accuracy. We used a combined cosine distance loss and mean squared error loss on a multilingual, in-domain retrieval data blend to align the student’s embeddings with the teacher.
Figure 6. The pruning and distillation pipeline compresses the retriever from a 3B base to the final 1B production model.
This same sequence, ModelOpt structured pruning followed by 8B teacher distillation, was repeated a second time to compress the 2B intermediate model down to the final 1.14B embedding model. Final training used a progressive two-stage context-scaling schedule:
The following table summarizes the core technical specifications and deployment targets for the Nemotron 3 Embed models:
Table 2. Architectural specifications and core inference configurations for the Nemotron 3 Embed models.
Enterprise Partner Evaluations
Enterprise ISVs, AI-native companies, and memory providers are already evaluating Nemotron 3 Embed across agentic retrieval, agent memory, code retrieval, and production inference workflows.
Getting Started
NVIDIA Nemotron 3 Embed is released with open weights and open-source training recipes, giving organizations full control over how retrieval models are customized and deployed for production AI applications.
Developers can get started using the deployment option that best fits their workflow:
For workloads requiring domain adaptation or footprint reduction, we have also open-sourced NVIDIA NeMo AutoModel training recipes:
For example, on the NV Docs evaluation, fine-tuning Nemotron-3-Embed-1B-BF16 improved NDCG@10 from 56.7% to 63.3% (+11.6%) and Recall@5 from 56.1% to 62.8% (+11.9%).
Whether you are building enterprise search, production RAG, agent memory, code retrieval, or agentic AI systems, NVIDIA Nemotron 3 Embed provides flexible deployment options—from open-source models on Hugging Face to fully managed AI Cloud platforms and NVIDIA NIM microservices.
Explore the models, deploy them on your preferred platform, and let us know what you are building.
Models mentioned in this article 5
Datasets mentioned in this article 1
Spaces mentioned in this article 1
Collections mentioned in this article 1

Data for Agents
NVIDIA Isaac Teleop and GR00T 1.7 Open VLA Model Available in LeRobot
Models mentioned in this article 5
Datasets mentioned in this article 1
Spaces mentioned in this article 1
Collections mentioned in this article 1
Verified source · Hugging Face
Reported by Hugging Face. Open the original for full media and formatting.
More in Agents
All news
AgentsThe agent security gap: 54% of enterprises have already had an AI agent incident, and most still let agents share credentials
Across 107 enterprises, AI agents are being given real access to systems and data while the controls meant to contain them lag behind. More than half have already had a confirmed agent security incident or a near-miss; only about a third give every agent its own scoped identity,…
Read at VentureBeat
AgentsThe AI context gap: Enterprise AI organizations have a trust problem, not a retrieval problem — and most are still building the fix
Across 101 enterprises, the infrastructure that feeds AI agents their business context is being built faster than it can be trusted. Retrieval-augmented generation is already the default context source, and provider-native retrieval has quietly overtaken the dedicated vector dat…
Read at VentureBeat
AgentsYes, you can now order DoorDash from the command line
DoorDash is opening a limited beta of dd-cli, a command-line tool that lets developers and AI agents search stores, build carts, and place orders from the terminal, marking another step toward software designed for AI agents instead of just humans.
Read at TechCrunch
AgentsAgentic orchestration: Enterprise AI organizations have a deployment problem, not a platform problem — and most are calling chatbots agents
Across 101 enterprises, agent orchestration is consolidating onto model-provider platforms — Anthropic’s Claude leads by a wide margin — chosen for the gravity of the underlying model and judged on reliable multi-step execution. But the ambition runs well ahead of the reality: m…
Read at VentureBeat