• bitcoinBitcoin(BTC)$75,897.00-4.11%
  • ethereumEthereum(ETH)$2,399.87-5.44%
  • tetherTether(USDT)$1.00-0.05%
  • binancecoinBNB(BNB)$717.20-1.29%
  • rippleXRP(XRP)$1.32-9.80%
  • usd-coinUSDC(USDC)$1.00-0.02%
  • solanaSolana(SOL)$97.97-5.29%
  • tronTRON(TRX)$0.332366-2.37%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.04-0.39%
  • zcashZcash(ZEC)$1,134.74-5.24%
  • HyperliquidHyperliquid(HYPE)$76.94-5.69%
  • dogecoinDogecoin(DOGE)$0.080656-4.99%
  • RainRain(RAIN)$0.014230-0.61%
  • USDSUSDS(USDS)$1.00-0.04%
  • moneroMonero(XMR)$504.17-1.78%
  • whitebitWhiteBIT Coin(WBT)$77.99-4.70%
  • chainlinkChainlink(LINK)$11.08-5.13%
  • leo-tokenLEO Token(LEO)$8.80-2.22%
  • cardanoCardano(ADA)$0.198071-7.17%
  • stellarStellar(XLM)$0.180945-7.19%
  • Ethena USDeEthena USDe(USDE)$1.00-0.07%
  • daiDai(DAI)$1.000.02%
  • bitcoin-cashBitcoin Cash(BCH)$217.83-4.03%
  • USD1USD1(USD1)$1.00-0.05%
  • litecoinLitecoin(LTC)$51.62-4.60%
  • uniswapUniswap(UNI)$6.39-3.22%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.32-3.18%
  • CantonCanton(CC)$0.092329-5.55%
  • hedera-hashgraphHedera(HBAR)$0.075828-3.04%
  • Global DollarGlobal Dollar(USDG)$1.00-0.01%
  • avalanche-2Avalanche(AVAX)$7.34-3.42%
  • nearNEAR Protocol(NEAR)$2.36-8.04%
  • shiba-inuShiba Inu(SHIB)$0.000005-6.04%
  • suiSui(SUI)$0.69-6.54%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.04%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • crypto-com-chainCronos(CRO)$0.055960-5.49%
  • tether-goldTether Gold(XAUT)$4,305.09-0.04%
  • Circle USYCCircle USYC(USYC)$1.140.01%
  • BittensorBittensor(TAO)$222.67-6.57%
  • MemeCoreMemeCore(M)$1.113.59%
  • Ripple USDRipple USD(RLUSD)$1.00-0.05%
  • okbOKB(OKB)$109.91-3.92%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.15-0.05%
  • aaveAave(AAVE)$124.58-3.53%
  • BitwayBitway(BTW)$0.703.06%
  • pax-goldPAX Gold(PAXG)$4,306.80-0.10%
  • AsterAster(ASTER)$0.68-3.70%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.056936-2.12%
  • mantleMantle(MNT)$0.54-5.64%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

NVIDIA AI Releases Nemotron-Terminal: A Systematic Data Engineering Pipeline for Scaling LLM Terminal Agents

March 10, 2026
in AI & Technology
Reading Time: 5 mins read
A A
NVIDIA AI Releases Nemotron-Terminal: A Systematic Data Engineering Pipeline for Scaling LLM Terminal Agents
ShareShareShareShareShare

The race to build autonomous AI agents has hit a massive bottleneck: data. While frontier models like Claude Code and Codex CLI have demonstrated impressive proficiency in terminal environments, the training strategies and data mixtures behind them have remained closely guarded secrets. This lack of transparency has forced researchers and devs into a costly cycle of trial and error.

NVIDIA is now breaking that silence by unveiling a comprehensive framework for building high-performance terminal agents. By introducing Terminal-Task-Gen and the Terminal-Corpus dataset, NVIDIA is essentially giving the developer community the blueprints to build agents that don’t just ‘chat’ about code, but actually execute it with surgical precision.

YOU MAY ALSO LIKE

Google Launches Gemini 3.8 Live and Extended Thinking Voice Models – Unite.AI

Are Older MacBooks Still Worth Buying In 2026?

https://arxiv.org/pdf/2602.21193

The Data Scarcity Problem

The challenge of training an agent for the command line is two-fold. First, there is a scarcity of foundational resources—specifically, diverse task prompts and the complex dependency files needed to create realistic environments. Second, capturing ‘trajectories’ (the step-by-step terminal interactions) is logistically painful. Human interactions are slow to record, and synthetic generation via LLM agents is prohibitively expensive because it requires fresh Docker environment instantiation for every single turn.

Terminal-Task-Gen: A Two-Pronged Strategy

NVIDIA’s solution is a ‘coarse-to-fine’ data generation pipeline called Terminal-Task-Gen. It utilizes two distinct strategies to scale training data without breaking the bank.

1. Dataset Adaptation (The Coarse Layer)

Instead of starting from scratch, the team leverages high-quality existing Supervised Fine-Tuning (SFT) datasets from math, code, and software engineering (SWE) domains. They transform these static prompts into interactive terminal tasks.

  • Math and Code: Using 163K math prompts and 35K code prompts, they wrap these challenges in a terminal scaffold.
  • SWE: They pull 32K unique prompts from repositories like SWE-bench and SWE-reBench. The clever part? This process doesn’t require an LLM “in the loop” for the initial adaptation, making it incredibly efficient to scale volume.

2. Synthetic Task Generation (The Fine Layer)

To bridge the gap between general reasoning and the specific rigors of terminal agency, NVIDIA team uses Terminal-Task-Gen to create novel, executable tasks.

  • Seed-based Generation: The LLM uses existing scientific computing or algorithmic problems as “inspiration” to synthesize new tasks. The agent is forced to install packages, read input files, and write results—mirroring a real-world developer workflow.
  • Skill-based Generation: This is where it gets technical. NVIDIA curated a taxonomy of “primitive terminal skills” across nine domains, including Security, Data Science, and System Administration. The LLM is then instructed to combine 3–5 of these primitives (like graph traversal + network configuration + file I/O) into a single, complex task.

Solving the Infrastructure Overhead

One of the most significant engineering breakthroughs in this research is the move to Pre-Built Docker Images. Previous frameworks often generated a unique Dockerfile for every single task, leading to massive build-time overhead and frequent failures. NVIDIA team instead maintains nine shared base images pre-configured with essential libraries (like pandas for data science or cryptography tools for security). This ‘single-pass’ creation method allows for massive parallelization and a significantly smaller resource footprint.

Performance: When 32B Beats 480B

The results of this data-centric approach are staggering. NVIDIA team used this pipeline to train the Nemotron-Terminal family of models, initialized from Qwen3.

On the Terminal-Bench 2.0 benchmark, which tests agents on end-to-end workflows like training machine learning models or debugging system environments, the improvements were vertical:

  • Nemotron-Terminal-8B: Jumped from a 2.5% success rate to 13.0%.
  • Nemotron-Terminal-32B: Achieved a 27.4% accuracy.

To put that in perspective, the 32B model outperformed the 480B Qwen3-Coder (23.9%) and rivaled the performance of closed-source giants like Grok 4 (23.1%) and GPT-5-Mini (24.0%). This proves that for terminal agents, high-quality, diverse trajectory data is a more powerful lever than sheer parameter scale.

Critical Insights

NVIDIA’s research also debunks several common myths in data engineering:

  • Don’t Filter Out Errors: The research team found that keeping ‘unsuccessful’ trajectories in the training data actually improved performance (12.4% vs 5.06% for success-only filtering). Exposing models to realistic error states and recovery patterns makes them more robust.
  • Skip the Curriculum: They experimented with ‘curriculum learning’ (training on easy data before hard data) but found that simple mixed training was just as effective, if not better.
  • Context Length Limits: While terminal trajectories can be long, most high-quality supervision fits within a standard 32,768-token window. Extending the context length slightly hurt performance, likely because long-tail trajectories tend to be noisier.

Check out Paper and HF Project Page. Also, feel free to follow us on Twitter and don’t forget to join our 120k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

The post NVIDIA AI Releases Nemotron-Terminal: A Systematic Data Engineering Pipeline for Scaling LLM Terminal Agents appeared first on MarkTechPost.

Credit: Source link

ShareTweetSendSharePin

Related Posts

Google Launches Gemini 3.8 Live and Extended Thinking Voice Models – Unite.AI
AI & Technology

Google Launches Gemini 3.8 Live and Extended Thinking Voice Models – Unite.AI

September 15, 2026
Are Older MacBooks Still Worth Buying In 2026?
AI & Technology

Are Older MacBooks Still Worth Buying In 2026?

September 15, 2026
This Is A Great Place To Store Your Old Hard Drives And Keep Them Safe
AI & Technology

This Is A Great Place To Store Your Old Hard Drives And Keep Them Safe

September 15, 2026
Salesforce Debuts Koa Reasoning Model for Agentforce, Trained on Nemotron – Unite.AI
AI & Technology

Salesforce Debuts Koa Reasoning Model for Agentforce, Trained on Nemotron – Unite.AI

September 15, 2026
Next Post
Pentagon gives Anthropic an ultimatum amid fight over military AI guardrails

Pentagon gives Anthropic an ultimatum amid fight over military AI guardrails

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
Could New Hampshire Change the Midterm Calculus? and Refugee Stories of Survival – Sept. 8

Could New Hampshire Change the Midterm Calculus? and Refugee Stories of Survival – Sept. 8

September 15, 2026
DeepSeek AI Released DeepSeek-V4.1-Flash with 1M Context, FP4 KV Cache, and Cross-Layer Attention Reuse

DeepSeek AI Released DeepSeek-V4.1-Flash with 1M Context, FP4 KV Cache, and Cross-Layer Attention Reuse

September 10, 2026
Iran-backed rebels in Yemen tried using Anthropic’s Claude to build guided missiles, alarming report finds

Iran-backed rebels in Yemen tried using Anthropic’s Claude to build guided missiles, alarming report finds

September 11, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!