Bitcoin

Bitcoin

$77,213.55

BTC 0.28%

Ethereum

Ethereum

$2,106.63

ETH 0.42%

  • Login
  • Register
Metaverse Media Group
  • Home
  • Crypto
  • NFTs
  • Artificial Intelligence
  • More
    • Technology
    • Business
    • Newsletter
No Result
View All Result
  • Home
  • Crypto
  • NFTs
  • Artificial Intelligence
  • More
    • Technology
    • Business
    • Newsletter
No Result
View All Result
Metaverse Media Group

Nvidia’s SoL-Pi system cuts coding agent token usage nearly in half by optimizing the harness

Nvidia’s SoL-Pi system cuts coding agent token usage nearly in half by optimizing the harness

The Decoderby The Decoder
26 September 2026
SoL-Pi cuts coding agents’ token usage by up to 49 percent with little change in performance by optimizing the control layer between the model and its environment. A research agent tested 152 approaches across more than 3,000 runs to develop the system, though the gains were smaller on other benchmarks. The article Nvidia’s SoL-Pi system cuts coding agent token usage nearly in half by optimizing the harness appeared first on The Decoder….


Jonathan Kemper


Sep 26, 2026

Image description

Nano Banana Pro prompted by THE DECODER

A new Nvidia paper describes a system that automatically optimizes the control layer of coding agents, known as the harness. Token usage drops by almost half while performance stays roughly the same, according to the researchers.

The longer AI agents work unsupervised, the more expensive they get. Single predictions turn into long chains of reasoning, tool calls, and feedback loops, and token usage balloons along the way.

A new study from Nvidia researchers tackles these costs not at the model level but at the harness, the control layer between the model and its environment used by systems like Codex, Claude Code, or OpenClaw.

Diagram of the SoL-Pi auto-research loop showing research environments, a research AI, an idea pool, and four retained mechanisms, alongside bar charts comparing score and API costs for Codex, Claude Code, Pi, and SoL-Pi on EdgeBench.
A research AI analyzes agent traces, proposes harness changes, and keeps only those that maintain performance while cutting costs. SoL-Pi saves 50 percent compared to Codex and 54.3 percent compared to Claude Code on EdgeBench. | Image: Nvidia

The harness controls how an agent sees states, runs actions, and processes feedback. Most efficiency methods so far have focused on cutting the cost per token through faster attention kernels and serving infrastructure, model compression like quantization, or swapping in cheaper models.

AI explores 152 directions to find leaner control logic

Optimizing the harness is hard in practice because tool usage, context management, verification, and abort logic are all tightly coupled. A change that saves tokens in one place can trigger errors elsewhere or just push costs into a later phase. Typically, humans sift through long execution traces and translate recurring failure patterns into code.

The system, called SoL-Pi, automates that work. A research agent watches another agent’s traces, proposes changes, and tests them in prepared environments. Capability and efficiency checks determine which candidates survive. The approach draws on recursive self-improvement, according to the authors.

Flowchart of the search pipeline from trajectory rollouts through map-reduce analysis, mechanism proposal, candidate implementation, independent review, and development validation to a separate held-out evaluation.
The held-out evaluation happens only after the harness is frozen and doesn’t feed back into the search process. | Image: Nvidia

Across 535 executable environments, the system explored 152 directions, including 495 tasks derived from GitHub issue-pull-request pairs and 40 synthetic test cases. In total, the process generated more than 3,000 runs and over 60,000 agent-environment interactions. According to the researchers, this scale shows how broadly the system searched, but more search doesn’t automatically yield better results. That’s a risk here, because earlier work showed that automatically optimized harnesses tend to overfit to their training tasks and offer little benefit on unfamiliar ones.

SoL-Pi addresses this by strictly separating search feedback from evaluation. The researchers used EdgeBench as their test benchmark and walled it off from the search process entirely. Of its 51 public tasks, they used 11 for one-time validation of finished candidates. The remaining 40 were reserved for final evaluation, and those results never fed back into the search.

Four mechanisms that eliminate wasted work

The search produced four mechanisms. Action Fusion merges two consecutive steps into one, such as a code edit followed by a test run, which eliminates an entire language model call. Online Context Compact runs after each planning step and trims accumulated context whenever it can do so without losing important information.

ObservationPack archives long tool outputs and drops in a short summary on later steps rather than resending the full text each time. The Evidence-Preserving Reducer routes large error and test logs to a cheaper model that boils them down to the key findings, with an automatic verification step catching any critical clues that slip through.

Four-panel diagram showing how Action Fusion merges consecutive API calls, Online Context Compact trims context after subtask completion, ObservationPack archives large tool outputs with short summaries, and Evidence-Preserving Reducer distills error logs through a cheaper model with automatic verification.
Nvidia searches across 535 executable environments for mechanisms and holds EdgeBench back for final evaluation. | Image: Nvidia

On EdgeBench’s 51 public tasks, SoL-Pi performs about as well as the original Pi harness, according to the researchers. How much token usage drops depends on the configuration. The most efficient variant combines all four mechanisms, uses 49 percent fewer tokens, and reaches 93.7 percent of Pi’s score. Users who prioritize performance and pick only the strongest single mechanism beat Pi’s score by 5.3 percent while still saving tokens. Across both variants, token usage drops by 44.7 to 49 percent.

Comparison table of Codex, OpenSquilla, Oh-My-Pi, OpenCode, Oh-My-Opencode, Pi, and two SoL-Pi variants running GPT-5.6 Sol, showing token traffic, costs, average score, and token efficiency.
SoL-Pi’s efficiency variant cuts token usage in half compared to Pi and costs $894 instead of $1,339, with a slightly lower score. | Image: Nvidia

In dollar terms, the authors estimate savings of $8.75 to $13.50 per hour compared to native Codex and Claude Code harnesses, and $4.36 to $5.71 per hour compared to Pi, based on current API prices.

The researchers built the system with GPT-5.6 Sol only and then applied it to Opus 5 without any changes. There, it retained 94.3 percent of Pi’s performance with similar savings. But the mechanisms triggered less often and less aggressively under Opus 5, which the researchers attribute to the harness being optimized solely on GPT-5.6 Sol trajectories.

Results get messier on other benchmarks

Beyond EdgeBench, the picture is more mixed. On 63 CPU tasks from Terminal-Bench 4, SoL-Pi solves only 15 tasks while Codex and Pi each solve 18. Total costs still came in about a quarter lower than Pi’s.

On the formally verified Lean 4 tasks from the 2026 Math Olympiad (IMO 2026), the system cracked three of six problems at the lowest cost per solved problem. In a kernel optimization experiment, a swarm of 20 SoL-Pi workers cut costs by 26.8 percent compared to a comparable Pi swarm.

Architecture of an agent swarm with a Codex coordinator and five groups of four workers, alongside progress curves and bar charts comparing cycle counts and model costs.
In the kernel optimization test, the swarm with SoL-Pi workers achieves the best result and costs about a quarter less than the swarm with Pi workers. | Image: Nvidia

The efficiency gains come with trade-offs, because shorter context can reduce prompt cache reuse. Total costs in one test run still dropped from $1,339 to $894. Looking ahead, the authors suggest pretraining the harness across many tasks, similar to how models are pretrained, and using an already lean harness to make searching for its successor cheaper. They call this recursive efficiency improvement a vision, not a finding from the current study.

How much the harness shapes an agent’s costs became clear in an August test by tooling company Composio, which ran Deepseek V4 Flash across four agent frameworks including Claude Code and the Pi-based Oh My Pi. The cost per solved task varied by nearly 3x even though the same model was doing the work.

The pricing and optimization pressure keeps growing because agents consume ever more tokens. According to OpenRouter analyst Peter Walker, agentic token usage has grown 14x since February 2026, and nearly 70 percent of that comes from cached prompts.

Context compression of the kind SoL-Pi uses can have side effects, though. One study found that compression preserves only 17 percent of user instructions on average. Parallel agents drive up costs too. Codex developer Eric Provencher recently warned that more than two sub-agents almost always burn tokens without improving quality, since they spend most of their time checking each other’s work.

AI News Without the Hype – Curated by Humans

Subscribe to THE DECODER for ad-free reading, a weekly AI newsletter, our exclusive “AI Radar” frontier report six times a year, full archive access, and access to our comment section.


Subscribe now

Read on for the full picture.
Subscribe for hype-free coverage.

  • Full access to every article on THE DECODER
  • No ads
  • Join the comments and community discussions
  • A weekly AI news recap via mail
  • 6x/year: “AI Radar” — deep dives on the AI topics that matter most
  • Daily AI news, always up to date
  • Our full ten-year archive
  • Covered by a team with 10+ years in AI


Subscribe to The Decoder

Read the full article on The-Decoder.com
in AI
Reading Time: 7 mins read
0
0
21
VIEWS
Share on TwitterShare on Facebook

Subscribe to our newsletter

For the latest news & monthly prize giveaways
Join Now

Subscribe to our newsletter

For the latest news & monthly prize giveaways
Join Now
ADVERTISEMENT

Related Posts

OpenAI pauses its “most capable models” after agents exploit loopholes and leak data
AI

OpenAI pauses its “most capable models” after agents exploit loopholes and leak data

3 hours ago
26
Pentagon was right to slap Anthropic with a security supply chain risk label, federal court says
AI

Pentagon was right to slap Anthropic with a security supply chain risk label, federal court says

17 hours ago
26
Ruby on Rails creator DHH says he’s done writing code by hand
AI

Ruby on Rails creator DHH says he’s done writing code by hand

1 day ago
26

Comments

Please login to join discussion
ADVERTISEMENT

Latest News

  • All
  • Crypto
  • NFTs
  • Technology
  • Business
Musk’s Grok Is Out-Trading ChatGPT 40 to 1 Among Coinbase AI Agents
Crypto

Musk’s Grok Is Out-Trading ChatGPT 40 to 1 Among Coinbase AI Agents

Bitcoin.com News
by Bitcoin.com News
13 minutes ago
19
Nvidia’s SoL-Pi system cuts coding agent token usage nearly in half by optimizing the harness
AI

Nvidia’s SoL-Pi system cuts coding agent token usage nearly in half by optimizing the harness

The Decoder
by The Decoder
1 hour ago
21
Bitget Saga: Hacker Just Refueled on Binance as Withdrawals Reopen Monday
Crypto

Bitget Saga: Hacker Just Refueled on Binance as Withdrawals Reopen Monday

Bitcoin.com News
by Bitcoin.com News
2 hours ago
25
OpenAI pauses its “most capable models” after agents exploit loopholes and leak data
AI

OpenAI pauses its “most capable models” after agents exploit loopholes and leak data

The Decoder
by The Decoder
3 hours ago
26
Kalshi Says XRP Price Can Hit $1.70 in September
Crypto

Kalshi Says XRP Price Can Hit $1.70 in September

Bitcoin.com News
by Bitcoin.com News
4 hours ago
25
Bitcoin ATM Scam Takes $4,900 After Fake Jury Duty Threat
Crypto

Bitcoin ATM Scam Takes $4,900 After Fake Jury Duty Threat

Bitcoin.com News
by Bitcoin.com News
5 hours ago
26
Load More
Next Post
Musk’s Grok Is Out-Trading ChatGPT 40 to 1 Among Coinbase AI Agents

Musk’s Grok Is Out-Trading ChatGPT 40 to 1 Among Coinbase AI Agents

ADVERTISEMENT

Follow Us

Categories

  • Crypto
  • NFTs
  • AI
  • Technology
  • Business
  • Crypto
  • NFTs
  • AI
  • Technology
  • Business
Subscribe to our Newsletter

© 2022 Metaverse Media Group – The Metaverse Mecca

Privacy and Cookie Policy | Sitemap

Welcome Back!

Sign In with Google
OR

Login to your account below

Forgotten Password? Sign Up

Create New Account!

Sign Up with Google
OR

Fill the forms below to register

*By registering into our website, you agree to the Terms & Conditions and Privacy Policy.
All fields are required. Log In

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • Crypto
  • NFTs
  • Artificial Intelligence
  • More
    • Technology
    • Business
    • Newsletter
Bitcoin

Bitcoin

$77,213.55

BTC 0.28%

Ethereum

Ethereum

$2,106.63

ETH 0.42%

  • Login
  • Sign Up
This website uses cookies. By continuing to use this website you are giving consent to cookies being used. Visit our Privacy and Cookie Policy.

Subscribe to our newsletter

Get the latest news & win monthly prizes

Subscribe to our newsletter

For the Latest News and Monthly Prize Giveaways

Join Now
Join Now