• bitcoinBitcoin(BTC)$84,180.000.49%
  • ethereumEthereum(ETH)$2,686.290.23%
  • tetherTether(USDT)$1.000.00%
  • binancecoinBNB(BNB)$772.19-0.03%
  • rippleXRP(XRP)$1.52-1.91%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • solanaSolana(SOL)$121.530.42%
  • tronTRON(TRX)$0.335029-0.86%
  • zcashZcash(ZEC)$1,666.229.01%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.030.15%
  • HyperliquidHyperliquid(HYPE)$92.120.52%
  • dogecoinDogecoin(DOGE)$0.096721-0.88%
  • chainlinkChainlink(LINK)$14.112.42%
  • moneroMonero(XMR)$554.850.17%
  • whitebitWhiteBIT Coin(WBT)$83.970.40%
  • USDSUSDS(USDS)$1.000.00%
  • cardanoCardano(ADA)$0.2533860.00%
  • RainRain(RAIN)$0.0128867.79%
  • leo-tokenLEO Token(LEO)$8.961.40%
  • stellarStellar(XLM)$0.217212-0.53%
  • bitcoin-cashBitcoin Cash(BCH)$337.00-0.48%
  • nearNEAR Protocol(NEAR)$4.930.39%
  • uniswapUniswap(UNI)$9.743.10%
  • litecoinLitecoin(LTC)$72.011.67%
  • CantonCanton(CC)$0.1349746.21%
  • Ethena USDeEthena USDe(USDE)$1.00-0.02%
  • avalanche-2Avalanche(AVAX)$10.782.89%
  • suiSui(SUI)$1.160.11%
  • daiDai(DAI)$1.00-0.01%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.5810.27%
  • USD1USD1(USD1)$1.000.00%
  • hedera-hashgraphHedera(HBAR)$0.093341-0.88%
  • BittensorBittensor(TAO)$319.323.59%
  • shiba-inuShiba Inu(SHIB)$0.0000061.32%
  • crypto-com-chainCronos(CRO)$0.0667182.19%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • BitwayBitway(BTW)$1.03-21.03%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.02%
  • MemeCoreMemeCore(M)$1.212.35%
  • EthenaEthena(ENA)$0.2721424.51%
  • tether-goldTether Gold(XAUT)$4,279.20-0.17%
  • OndoOndo(ONDO)$0.54-0.37%
  • okbOKB(OKB)$120.580.27%
  • Ripple USDRipple USD(RLUSD)$1.000.01%
  • Circle USYCCircle USYC(USYC)$1.140.00%
  • aaveAave(AAVE)$155.142.71%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • mantleMantle(MNT)$0.693.95%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.15-0.05%
  • polkadotPolkadot(DOT)$1.243.80%
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

Beyond math and coding: New RL framework helps train LLM agents for complex, real-world tasks

November 28, 2025
in AI & Technology
Reading Time: 6 mins read
A A
Beyond math and coding: New RL framework helps train LLM agents for complex, real-world tasks
ShareShareShareShareShare

Researchers at the University of Science and Technology of China have developed a new reinforcement learning (RL) framework that helps train large language models (LLMs) for complex agentic tasks beyond well-defined problems such as math and coding. 

Their framework, Agent-R1, is compatible with popular RL algorithms and shows considerable improvement on reasoning tasks that require multiple retrieval stages and multi-turn interactions with tools. 

YOU MAY ALSO LIKE

This External GPU Uses Wi-Fi To Transform Any Device Into A Gaming Rig

You Can Use Your Old Laptop To Make A Smart Home Hub

The framework is built on a redefinition of the RL paradigm that takes into account the dynamic nature of agentic applications that require interacting with evolving environments and imperfect information. This framing is much more similar to real-world applications and can have important uses for agentic tasks in enterprise settings.

Rethinking reinforcement learning for agents

RL has become a cornerstone of training LLMs for well-defined reasoning tasks. In areas like mathematics and coding, the model receives a clear signal: The answer is either right or wrong. This makes it relatively straightforward to reward or penalize its behavior. 

But this approach struggles with agentic tasks that require models to work in interactive environments, develop dynamic memories across conversations, perform multi-step reasoning and respond to unpredictable feedback. Training agents with RL for these scenarios presents unique challenges, especially in multi-turn interactions where designing effective rewards is complex and the trained agent often fails to generalize to the messy, unpredictable nature of real-world environments.

To address these challenges, the University of Science and Technology researchers revisited the fundamental framework of RL, known as the Markov Decision Process (MDP). An MDP models decision-making using four key components: a state space (the set of possible states an agent can be in); an action space (what the agent can do); a state transition probability (the state to which an action will likely lead); and a reward function (whether the outcome is good or bad). The paper proposes extending this framework to better suit LLM agents.

In the new formulation, the state space is expanded to include not just the current state (the current sequence of tokens generated by the model) but the entire history of interactions and environmental feedback. Actions are still fundamentally about generating text, but specific sequences of text can now trigger external tools, like an API call. State transitions become unpredictable, or “stochastic,” because the outcome depends not just on the tokens the model predicts but also on the environment’s response, which depends on external factors. Finally, the reward system becomes more granular, incorporating intermediate “process rewards” for successfully completing steps along the way, rather than just a single reward at the very end. This provides more frequent and precise guidance to the agent during training.

This last bit is especially important and addresses the “sparse reward” problem that most RL frameworks face. When the agent receives a single reward signal based on the final outcome, it does not learn from the right and wrong intermediate steps it has taken along the way. Process rewards solve this problem by providing feedback signals on these intermediate steps, making the learning process much more efficient.

“These extensions are crucial for enabling reinforcement learning algorithms to train sophisticated Agents capable of complex, multi-step reasoning and interaction within dynamic environments,” the researchers write in their paper.

The Agent-R1 framework

Based on the extended MDP definition, the researchers developed Agent-R1, a flexible and user-friendly training platform for RL-based LLM agents. It extends traditional single-turn RL frameworks to handle the multi-turn, interactive nature of agentic tasks, allowing for seamless integration with diverse environments. 

The most significant difference lies in the “rollout phase,” where the agent generates responses. In single-turn RL, the model generates a response once. In multi-turn RL, the process involves a series of complex back-and-forth interactions.

Agent-R1 framework (source: arXiv)

Agent-R1 achieves this flexible multi-turn rollout with two core modules: Tool and ToolEnv. The Tool module acts as an executor for specific actions such as calling an API or accessing a database. When invoked, a Tool performs its action and returns the direct, raw outcome. In contrast, the ToolEnv module is the orchestrator and interpreter. It takes the output from the Tool and determines how that outcome affects the agent’s state and the overall task progress. ToolEnv manages state transitions, calculates reward signals based on tool outcomes and packages the new state information for the agent. 

In short, when an action is complete, the Tool reports “what happened,” while ToolEnv dictates “what this outcome means for the agent and the task.”

Agent-R1 in action

The researchers tested Agent-R1 on the challenging task of multi-hop question answering, which requires complex reasoning, information retrieval across multiple documents and multi-step decision-making. They trained Qwen2.5-3B-Instruct on QA datasets and evaluated its performance on the HotpotQA and 2WikiMultihopQA datasets. They also tested it on the Musique dataset, which was out of the domain of tasks the agent was trained on. 

They compared various RL algorithms trained with Agent-R1 against two baselines: Naive RAG, a single-pass retrieval method where an LLM answers based on one set of retrieved documents, and Base Tool Call, which uses the model’s native function-calling ability without specialized RL training.

Agent-R1 performance

Models trained with the Agent-R1 framework (below the horizontal line) outperform baselines considerably (source: arXiv)

The results demonstrated that all RL-trained agents substantially outperformed the baselines. GRPO, an RL algorithm used in advanced reasoning models like DeepSeek-R1, delivered the best overall performance. 

“These results robustly validate Agent-R1’s efficacy in training powerful LLM agents via end-to-end RL, showing consistent, substantial gains over baselines across diverse datasets and RL algorithms,” the researchers write.

These findings can be significant for the enterprise, where there is a strong push to apply RL and reasoning beyond well-defined domains. A framework designed to handle messy, multi-turn interactions with users and dynamic environments can pave the way for new agents capable of solving complex problems in real-world settings.

“We hope Agent-R1 provides a foundation for future work on scalable and unified RL training for agentic LLMs,” the researchers conclude.

Credit: Source link

ShareTweetSendSharePin

Related Posts

This External GPU Uses Wi-Fi To Transform Any Device Into A Gaming Rig
AI & Technology

This External GPU Uses Wi-Fi To Transform Any Device Into A Gaming Rig

September 26, 2026
You Can Use Your Old Laptop To Make A Smart Home Hub
AI & Technology

You Can Use Your Old Laptop To Make A Smart Home Hub

September 26, 2026
TikTok Will Pay Alabama 0 Million To Settle Social Media Addiction Lawsuit
AI & Technology

TikTok Will Pay Alabama $100 Million To Settle Social Media Addiction Lawsuit

September 26, 2026
This App Lets You Use An Apple Watch With An Android Phone
AI & Technology

This App Lets You Use An Apple Watch With An Android Phone

September 26, 2026
Next Post
Trump signs executive order launching Genesis Mission AI project

Trump signs executive order launching Genesis Mission AI project

Leave a Reply Cancel reply

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

Search

No Result
View All Result
Bessent comments on U.S. debt reaching  trillion

Bessent comments on U.S. debt reaching $40 trillion

September 26, 2026
Tim Scott says ‘without question’ Darline Graham is qualified for Senate

Tim Scott says ‘without question’ Darline Graham is qualified for Senate

September 25, 2026
Her Husband Refuses To Pay The Mortgage

Her Husband Refuses To Pay The Mortgage

September 26, 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!