• bitcoinBitcoin(BTC)$76,513.000.41%
  • ethereumEthereum(ETH)$2,262.61-0.22%
  • tetherTether(USDT)$1.00-0.01%
  • rippleXRP(XRP)$1.37-0.57%
  • binancecoinBNB(BNB)$616.02-0.55%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • solanaSolana(SOL)$83.29-0.49%
  • tronTRON(TRX)$0.3263780.95%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.03-0.25%
  • dogecoinDogecoin(DOGE)$0.1082361.35%
  • whitebitWhiteBIT Coin(WBT)$57.315.54%
  • USDSUSDS(USDS)$1.000.02%
  • HyperliquidHyperliquid(HYPE)$40.180.16%
  • leo-tokenLEO Token(LEO)$10.34-0.36%
  • cardanoCardano(ADA)$0.2469150.31%
  • bitcoin-cashBitcoin Cash(BCH)$441.40-1.55%
  • moneroMonero(XMR)$381.540.81%
  • chainlinkChainlink(LINK)$9.12-0.37%
  • zcashZcash(ZEC)$346.346.10%
  • CantonCanton(CC)$0.150419-0.96%
  • stellarStellar(XLM)$0.158809-1.01%
  • USD1USD1(USD1)$1.000.00%
  • daiDai(DAI)$1.000.01%
  • litecoinLitecoin(LTC)$55.27-0.50%
  • MemeCoreMemeCore(M)$3.20-6.13%
  • avalanche-2Avalanche(AVAX)$9.12-0.75%
  • Ethena USDeEthena USDe(USDE)$1.000.01%
  • hedera-hashgraphHedera(HBAR)$0.087618-1.62%
  • RainRain(RAIN)$0.007829-0.49%
  • shiba-inuShiba Inu(SHIB)$0.0000060.47%
  • suiSui(SUI)$0.91-0.55%
  • the-open-networkToncoin(TON)$1.351.70%
  • paypal-usdPayPal USD(PYUSD)$1.000.01%
  • crypto-com-chainCronos(CRO)$0.068437-0.32%
  • Circle USYCCircle USYC(USYC)$1.120.00%
  • tether-goldTether Gold(XAUT)$4,604.590.89%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • BittensorBittensor(TAO)$250.06-1.25%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • pax-goldPAX Gold(PAXG)$4,607.801.04%
  • mantleMantle(MNT)$0.630.22%
  • polkadotPolkadot(DOT)$1.21-1.09%
  • uniswapUniswap(UNI)$3.20-0.37%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.060662-5.14%
  • Pi NetworkPi Network(PI)$0.179617-4.82%
  • SkySky(SKY)$0.079527-2.50%
  • Falcon USDFalcon USD(USDF)$1.000.00%
  • okbOKB(OKB)$82.69-0.10%
  • AsterAster(ASTER)$0.65-1.49%
  • nearNEAR Protocol(NEAR)$1.30-2.69%
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

Alibaba’s Metis agent cuts redundant AI tool calls from 98% to 2% — and gets more accurate doing it

April 30, 2026
in AI & Technology
Reading Time: 10 mins read
A A
Alibaba’s Metis agent cuts redundant AI tool calls from 98% to 2% — and gets more accurate doing it
ShareShareShareShareShare

One of the key challenges of building effective AI agents is teaching them to choose between using external tools or relying on their internal knowledge. But large language models are often trained to blindly invoke tools, which causes latency bottlenecks, unnecessary API costs, and degraded reasoning caused by environmental noise. 

To overcome this challenge, researchers at Alibaba introduced Hierarchical Decoupled Policy Optimization (HDPO), a reinforcement learning framework that trains agents to balance both execution efficiency and task accuracy. 

YOU MAY ALSO LIKE

Meta Says It May Withdraw Its Apps From New Mexico If Judge Agrees To The State’s Demands

Why OpenAI’s ‘goblin’ problem matters — and how you can release the goblins on your own

Metis, a multimodal model they trained using this framework, reduces redundant tool invocations from 98% to just 2% while establishing new state-of-the-art reasoning accuracy across key industry benchmarks. This framework helps create AI agents that are not trigger-happy and know when to abstain from using tools, enabling the development of responsive and cost-effective agentic systems.

The metacognitive deficit

Current agentic models face what the researchers call a “profound metacognitive deficit.” The models have a hard time deciding when to use their internal parametric knowledge versus when to query an external utility. As a result, they blindly invoke tools and APIs, like web search or code execution, even when the user’s prompt already contains all the necessary information to resolve the task.

This trigger-happy tool-calling behavior creates severe operational hurdles for real-world applications. Because the models are trained to focus almost entirely on task completion, they are indifferent to latency. These agents frequently hit exorbitant tool call rates. Every unnecessary external API call introduces a serial processing bottleneck, turning a technically capable AI into a sluggish system that frustrates users and burns through tool budgets.

At the same time, burning computational resources on excessive tool use does not translate to better reasoning. Redundant tool interactions inject noise into the model’s context. This noise can distract the model, derailing an otherwise sound chain of reasoning and actively degrading the final output.

To address the latency and cost issues of blind tool invocation, previous reinforcement learning methods attempted to penalize excessive tool usage by combining task accuracy and execution efficiency into one reward signal. However, this entangled design creates an unsolvable optimization dilemma. If the efficiency penalty is too aggressive, the model becomes overly conservative and suppresses essential tool use, sacrificing correctness on arduous tasks. Conversely, if the penalty is mild, the optimization signal loses its value and does not prevent tool overuse on simpler tasks.

Classic training algorithms use composite rewards that mix accuracy and efficiency (source: arXiv)

Furthermore, this shared reward creates semantic ambiguity, where an inaccurate trajectory with zero tool calls might yield the same reward as an accurate trajectory with excessive tool usage. Because the training signals for accuracy and efficiency become entangled, the model can’t learn to control tool-use without degrading its core reasoning capabilities.

Hierarchical decoupled policy optimization

To solve the optimization dilemma of coupled rewards, the researchers introduced HDPO. HDPO separates accuracy and efficiency into two independent optimization channels. The accuracy channel focuses on maximizing task correctness across all of the model’s rollouts. The efficiency channel optimizes for execution economy.

HDPO computes the training signals for these two channels independently and only combines them at the final stage of loss computation. The efficiency signal is conditional upon the accuracy channel. This means that an incorrect response is never rewarded simply for being fast or using fewer tools. This decoupling avoids situations where accuracy and efficiency gradients cancel each other out, providing the AI with clean learning signals for both goals.

The most powerful emergent property of this decoupled design is that it creates an implicit cognitive curriculum. Early in training, when the model still struggles with the task, the optimization is dominated by the accuracy objective, forcing the model to prioritize learning correct reasoning and knowledge. As the model’s reasoning capabilities mature and it consistently arrives at the right answers, the efficiency signal smoothly scales up. This mechanism causes the model to first master task resolution, and only then refine its self-reliance by avoiding redundant, costly API calls.

hdpo

HDPO separates efficiency and accuracy (source: arXiv)

To complement HDPO, the researchers developed a rigorous, multi-stage data curation regime that tackles severe flaws found in existing tool-augmented datasets. Their data curation pipeline covers supervised fine-tuning (SFT) and reinforcement learning (RL) stages.

For the SFT phase, they sourced data from publicly available tool-augmented multimodal trajectories and filtered them to remove low-quality examples containing execution failures or feedback inconsistencies. They also aggressively filtered out any training sample that the base model could solve directly without tools. Finally, using Google’s Gemini 3.1 Pro as an automated judge, they filtered the SFT corpus to only keep examples that demonstrated strategic tool use.

For the RL phase, the curation focused on ensuring a stable optimization signal. They filtered out prompts with corrupted visuals or semantic ambiguity. The HDPO algorithm relies on comparing correct and incorrect responses. If a task is trivially easy where the model always gets it right, or prohibitively hard where the model always fails, there is no meaningful mathematical variance to learn from. The team strictly retained only prompts that exhibited a non-trivial mix of successes and failures to guarantee an actionable gradient signal.

Metis agent: HDPO  in action

To test HDPO in action, the researchers used the framework to develop Metis, a multimodal reasoning agent equipped with coding and search tools. Metis is built on top of the Qwen3-VL-8B-Instruct vision-language model. The researchers trained it in two distinct stages. First, they applied SFT using their curated data to provide a cold-start initialization. Next, they applied RL using the HDPO framework, exposing the model to multi-turn interactions where it could invoke tools like Python code execution, text search, and image search.

metis

Overview of Metis agentic model (source: arXiv)

The researchers pitted Metis against standard open-source vision models like LLaVA-OneVision, text-only reasoners, and state-of-the-art agentic models including DeepEyes V2 and the 30-billion-parameter Skywork-R1V4. The evaluation spanned two main areas: visual perception and document understanding datasets like HRBench and V*Bench, and rigorous mathematical and logical reasoning tasks like WeMath and MathVista.

On all tasks, Metis achieved state-of-the-art or highly competitive performance, outperforming existing agentic models — including the much larger 30-billion-parameter Skywork-R1V4 — across both visual perception and reasoning tasks.

Metis benchmarks

Metis increases performance on key benchmarks while reducing tool-use by a very large margin (source: arXiv)

Equally important is the anecdotal behavior Metis showed in the experiments. For example, when presented with an image of a museum sign and asked what the center text says, standard agentic models waste time blindly writing Python scripts to crop the image just to read it. Metis, however, recognizes that the text is clearly legible in the raw image. It skips the tools entirely and uses a single inference pass.

In another experiment, the model was given a complex chart and asked to identify the second-highest line at a specific data point within a tiny subplot. Metis recognized that fine-grained visual analysis exceeded its native resolution capabilities and could not accurately distinguish the overlapping lines. Instead of guessing from the full image, it invoked Python to crop and zoom in exclusively on that specific subplot region, allowing it to correctly identify the line. It treats code as a precision instrument deployed only when the visual evidence is genuinely ambiguous, not as a default fallback.

The researchers released Metis along with the code for HDPO under the permissive Apache 2.0 license.

“Our results demonstrate that strategic tool use and strong reasoning performance are not a trade-off; rather, eliminating noisy, redundant tool calls directly contributes to superior accuracy,” the researchers conclude. “More broadly, our work suggests a paradigm shift in tool-augmented learning: from merely teaching models how to execute tools, to cultivating the meta-cognitive wisdom of when to abstain from them.”

Credit: Source link

ShareTweetSendSharePin

Related Posts

Meta Says It May Withdraw Its Apps From New Mexico If Judge Agrees To The State’s Demands
AI & Technology

Meta Says It May Withdraw Its Apps From New Mexico If Judge Agrees To The State’s Demands

April 30, 2026
Why OpenAI’s ‘goblin’ problem matters — and how you can release the goblins on your own
AI & Technology

Why OpenAI’s ‘goblin’ problem matters — and how you can release the goblins on your own

April 30, 2026
A Coding Implementation on Pyright Type Checking Covering Generics, Protocols, Strict Mode, Type Narrowing, and Modern Python Typing
AI & Technology

A Coding Implementation on Pyright Type Checking Covering Generics, Protocols, Strict Mode, Type Narrowing, and Modern Python Typing

April 30, 2026
Galactic Racer Lands On PC, PS5 And Xbox Series X/S On October 6
AI & Technology

Galactic Racer Lands On PC, PS5 And Xbox Series X/S On October 6

April 30, 2026
Next Post
Congress votes to end record shutdown, sending DHS funding bill to Trump's desk – NBC News

Congress votes to end record shutdown, sending DHS funding bill to Trump's desk - NBC News

Leave a Reply Cancel reply

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

Search

No Result
View All Result
U.S. and Iran work on peace deal but gap between them ‘wider than the Strait of Hormuz’

U.S. and Iran work on peace deal but gap between them ‘wider than the Strait of Hormuz’

April 24, 2026
Hunter Biden says he would compete against Donald Trump Jr. and Eric Trump in a cage match

Hunter Biden says he would compete against Donald Trump Jr. and Eric Trump in a cage match

April 27, 2026
‘Zero room for anyone who abuses their power’: California Democrat reacts to Swalwell resignation

‘Zero room for anyone who abuses their power’: California Democrat reacts to Swalwell resignation

April 24, 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!