• bitcoinBitcoin(BTC)$73,256.00-0.30%
  • ethereumEthereum(ETH)$2,006.760.10%
  • tetherTether(USDT)$1.000.01%
  • binancecoinBNB(BNB)$641.200.47%
  • rippleXRP(XRP)$1.320.61%
  • usd-coinUSDC(USDC)$1.000.01%
  • solanaSolana(SOL)$81.84-0.20%
  • tronTRON(TRX)$0.344083-2.24%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.031.28%
  • dogecoinDogecoin(DOGE)$0.0996240.15%
  • HyperliquidHyperliquid(HYPE)$64.093.80%
  • USDSUSDS(USDS)$1.00-0.04%
  • leo-tokenLEO Token(LEO)$9.92-1.02%
  • RainRain(RAIN)$0.0144521.38%
  • zcashZcash(ZEC)$531.70-3.33%
  • stellarStellar(XLM)$0.25860425.71%
  • cardanoCardano(ADA)$0.231931-1.15%
  • moneroMonero(XMR)$393.1310.34%
  • chainlinkChainlink(LINK)$8.98-0.06%
  • whitebitWhiteBIT Coin(WBT)$53.83-0.25%
  • bitcoin-cashBitcoin Cash(BCH)$301.941.42%
  • CantonCanton(CC)$0.153925-0.41%
  • USD1USD1(USD1)$1.000.05%
  • the-open-networkToncoin(TON)$1.74-1.50%
  • Ethena USDeEthena USDe(USDE)$1.000.00%
  • daiDai(DAI)$1.000.01%
  • hedera-hashgraphHedera(HBAR)$0.0961614.86%
  • litecoinLitecoin(LTC)$51.830.25%
  • MemeCoreMemeCore(M)$2.97-0.67%
  • avalanche-2Avalanche(AVAX)$8.81-1.17%
  • suiSui(SUI)$0.90-3.02%
  • shiba-inuShiba Inu(SHIB)$0.0000051.03%
  • nearNEAR Protocol(NEAR)$2.39-1.62%
  • crypto-com-chainCronos(CRO)$0.0675110.87%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.02%
  • Circle USYCCircle USYC(USYC)$1.130.03%
  • tether-goldTether Gold(XAUT)$4,515.190.90%
  • Global DollarGlobal Dollar(USDG)$1.00-0.03%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • BittensorBittensor(TAO)$250.00-3.98%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.130.05%
  • mantleMantle(MNT)$0.642.04%
  • pax-goldPAX Gold(PAXG)$4,524.980.98%
  • polkadotPolkadot(DOT)$1.19-1.92%
  • uniswapUniswap(UNI)$3.01-1.17%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.0587430.51%
  • okbOKB(OKB)$86.95-1.67%
  • AsterAster(ASTER)$0.67-0.34%
  • OndoOndo(ONDO)$0.354138-3.77%
  • Ripple USDRipple USD(RLUSD)$1.000.01%
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

Researchers automated LLM reasoning strategy design and cut token usage by 69.5%

May 28, 2026
in AI & Technology
Reading Time: 8 mins read
A A
Researchers automated LLM reasoning strategy design and cut token usage by 69.5%
ShareShareShareShareShare

Test-time scaling (TTS) has emerged as a proven method to improve the performance of large language models in real-world applications by giving them extra compute cycles at inference time. However, TTS strategies have historically been handcrafted, relying heavily on human intuition to dictate the rules of the model’s reasoning. 

To address this bottleneck, researchers from Meta, Google, and several universities have introduced AutoTTS, a framework that automatically discovers optimal TTS strategies. This automated approach allows enterprise organizations to dynamically optimize compute allocation without manually tuning heuristics. 

YOU MAY ALSO LIKE

The AI agent bottleneck isn’t model performance — it’s permissions

StepFun Releases Step 3.7 Flash: A 198B MoE Vision-Language Model for Coding Agents and Search Workflows

By implementing the optimal strategies discovered by AutoTTS, organizations can directly reduce the token usage and operational costs of deploying advanced reasoning models in production environments. In experimental trials, AutoTTS managed inference budgets efficiently, successfully reducing token consumption by up to 69.5% without sacrificing accuracy.

The manual bottleneck in test-time scaling

Test-time scaling enhances LLMs by granting them extra compute when generating answers. This extra compute allows the model to generate multiple reasoning paths or evaluate its intermediate steps before arriving at a final response. 

The primary challenge for designing TTS strategies is determining how to allocate this extra computation optimally. Historically, researchers have designed these strategies manually, relying on guesswork to build rigid heuristics. Engineers must hypothesize the rules and thresholds for when a model should branch out into new reasoning paths, probe deeper into an existing path, prune an unpromising branch, or stop reasoning altogether. 

Because this manual tuning process is constrained by human intuition, a vast amount of possible approaches remain unexplored. This often results in suboptimal trade-offs between model accuracy and computing costs.

Current TTS algorithms can be mapped to a width-depth control space — “width” being the number of reasoning branches explored, “depth” being how far each develops. Self-consistency (SC) samples a fixed number of trajectories and majority-votes the answer. Adaptive-consistency (ASC) saves compute by stopping early once a confidence threshold is hit. Parallel-probe takes a more granular approach, pruning unpromising branches while deepening the rest. All three are hand-crafted, and that’s the constraint AutoTTS is designed to break.

While some more advanced methods employ richer structures like tree search or external verifiers, they all share one key characteristic: they are meticulously hand-crafted. This manual approach restricts the scope of strategy discovery, leaving a massive portion of the potential resource-allocation space untouched.

Automating strategy discovery with AutoTTS

AutoTTS reframes the way test-time scaling is optimized. Instead of treating strategy design as a human task, AutoTTS approaches it as an algorithmic search problem within a controlled environment. 

This framework redefines the roles of both the human engineer and the AI model. Rather than hand-crafting specific rules for when an LLM should branch, prune, or stop reasoning, the engineer’s role shifts to constructing the discovery environment. The human defines the boundaries, including the control space of states and actions, optimization objectives balancing accuracy versus cost, and the specific feedback mechanisms. 

AutoTTS framework (source: arXiv)

An explorer LLM, such as Claude Code, designs the strategy. This explorer acts as an autonomous agent that iteratively proposes TTS “controllers.” These controllers are code-defined policies or algorithms that dictate how an AI model allocates its computational budget during inference. The explorer tests and refines these controllers based on feedback until it discovers an optimal resource-allocation policy. 

To make this automated search computationally affordable, AutoTTS relies on an “offline replay environment.” If the explorer LLM had to invoke a base reasoning model to generate new tokens every time it tested a new strategy, the compute costs would be astronomical. Instead, it relies on thousands of reasoning trajectories pre-collected from the base LLM. These trajectories include “probe signals,” which are intermediate answers that help the controller evaluate progress across different reasoning branches. 

During the discovery loop, the explorer agent proposes a controller and evaluates it against this offline data. The agent observes the execution traces of the proposed controller that show it allocated compute over time. By analyzing these traces, the agent can diagnose specific failure modes, such as noting if a controller pruned branches too aggressively in a specific scenario. This provides an advantage over just viewing a final result. The agent then iteratively rewrites its code to improve the accuracy-cost tradeoff. 

Inside the AI-designed controller

Because the explorer agent is not constrained by human intuition, it can discover highly coordinated, complex rules that a human engineer would likely never hand-code. One optimal controller discovered by AutoTTS, named the Confidence Momentum Controller, leverages several non-obvious mechanisms to manage compute:

  • Trend-based stopping: Hand-crafted strategies often instruct the model to stop reasoning once it hits a certain instantaneous confidence threshold. The AutoTTS agent discovered that instantaneous confidence can be misleading due to temporary spikes. Instead, the controller tracks an exponential moving average (EMA) of confidence and only stops if the overall confidence level is high and the trend is not actively declining.

  • Coupled width-depth control: Manually designed algorithms usually treat the “widening” of new reasoning paths and the “deepening” of current paths as separate decisions. AutoTTS discovered a closed feedback loop where the two actions are linked. If the confidence of the current branches stalls or regresses, the controller automatically triggers the spawning of new branches.

  • Alignment-aware depth allocation: Instead of giving all active reasoning branches an equal computation budget, the controller dynamically identifies which branches agree with the current leading answer. It then gives those branches priority “bursts” of extra computation. This concentrates the computational budget on the emerging consensus to quickly verify if it is correct.

Cost savings and accuracy gains in real-world benchmarks

To test whether an AI could autonomously discover a better test-time scaling strategy, researchers set up a rigorous evaluation framework. The core experiments were conducted on Qwen3 models ranging from 0.6B to 8B parameters. The researchers also tested the system’s ability to generalize on a distilled 8B version of the DeepSeek-R1 model. 

The explorer AI agent was initially tasked with discovering an optimal strategy using the AIME24 mathematical reasoning benchmark. This discovered strategy was then tested on two held-out math benchmarks, AIME25 and HMMT25, as well as the graduate-level general reasoning benchmark GPQA-Diamond. 

The AutoTTS discovered controller was pitted against four manually designed test-time scaling algorithms in the industry. These baselines included Self-Consistency with 64 parallel reasoning paths (SC@64), Adaptive-Consistency (ASC), Parallel-Probe, and Early-Stopping Self-Consistency (ESC). ESC is a hybrid approach that generates trajectories in parallel and stops early when an answer seems stable.

scaling curves

AutoTTS (red line) outperforms other baselines on industry benchmarks (source: arXiv)

When set to a balanced, cost-conscious mode, the AutoTTS-discovered controller reduced total token consumption by approximately 69.5% compared to SC@64. At the same time, the controller maintained the same average accuracy across the four Qwen models. When the inference budget was turned up, AutoTTS pushed peak accuracy beyond all handcrafted baselines in five out of eight test cases.

This efficiency translated to other tasks. On the GPQA-Diamond benchmark, the balanced AutoTTS variant slashed the inference token cost from 510K tokens down to just 151K tokens, while slightly improving overall accuracy. On the DeepSeek model, AutoTTS achieved the highest overall accuracy on the HMMT25 benchmark while cutting the token spend nearly in half.

For practitioners building enterprise AI applications, these experiments highlight two major operational benefits:

  • Raising peak performance: AutoTTS doesn’t just save money on token consumption. It actively raises the peak attainable performance of the base model. The AI-designed controller is remarkably good at detecting noisy or unproductive reasoning branches on the fly and continuously redirecting its compute budget toward the branches generating the most useful reasoning signals.

  • Cost-effective custom development: Because the framework relies on an offline replay environment, the entire discovery process cost only $39.90 and took 160 minutes. For enterprise teams, that means optimized reasoning strategies tailored to proprietary models and internal tasks are now within reach — without a dedicated research budget.

Both the AutoTTS framework and the Confidence Momentum Controller are available on GitHub; the CMC can be used as a drop-in replacement for other TTS controllers.

Credit: Source link

ShareTweetSendSharePin

Related Posts

The AI agent bottleneck isn’t model performance — it’s permissions
AI & Technology

The AI agent bottleneck isn’t model performance — it’s permissions

May 29, 2026
StepFun Releases Step 3.7 Flash: A 198B MoE Vision-Language Model for Coding Agents and Search Workflows
AI & Technology

StepFun Releases Step 3.7 Flash: A 198B MoE Vision-Language Model for Coding Agents and Search Workflows

May 29, 2026
Fable Dodges GTA VI With Another Delay
AI & Technology

Fable Dodges GTA VI With Another Delay

May 29, 2026
Pinterest cut AI costs 90% by gutting a frontier model’s vision layer
AI & Technology

Pinterest cut AI costs 90% by gutting a frontier model’s vision layer

May 29, 2026
Next Post
Could Instagram and Facebook leave this state?

Could Instagram and Facebook leave this state?

Leave a Reply Cancel reply

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

Search

No Result
View All Result
BP rocked by another scandal as Chair Albert Manifold ousted

BP rocked by another scandal as Chair Albert Manifold ousted

May 26, 2026
Anthropic’s Claude Opus 4.8 is here with 3X cheaper fast mode and near-Mythos level alignment

Anthropic’s Claude Opus 4.8 is here with 3X cheaper fast mode and near-Mythos level alignment

May 28, 2026
Kyle Busch was coughing up blood, 911 call reveals

Kyle Busch was coughing up blood, 911 call reveals

May 29, 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!