• bitcoinBitcoin(BTC)$84,529.000.52%
  • ethereumEthereum(ETH)$2,689.730.07%
  • tetherTether(USDT)$1.000.00%
  • binancecoinBNB(BNB)$777.280.66%
  • rippleXRP(XRP)$1.52-0.58%
  • usd-coinUSDC(USDC)$1.000.00%
  • solanaSolana(SOL)$122.100.63%
  • tronTRON(TRX)$0.333910-0.65%
  • zcashZcash(ZEC)$1,587.901.57%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.063.08%
  • HyperliquidHyperliquid(HYPE)$91.72-0.18%
  • dogecoinDogecoin(DOGE)$0.096974-0.68%
  • chainlinkChainlink(LINK)$14.13-1.07%
  • moneroMonero(XMR)$547.03-1.85%
  • whitebitWhiteBIT Coin(WBT)$84.310.44%
  • USDSUSDS(USDS)$1.00-0.01%
  • cardanoCardano(ADA)$0.254790-0.52%
  • RainRain(RAIN)$0.012578-5.33%
  • leo-tokenLEO Token(LEO)$9.051.01%
  • stellarStellar(XLM)$0.216161-0.97%
  • nearNEAR Protocol(NEAR)$5.248.45%
  • bitcoin-cashBitcoin Cash(BCH)$335.78-0.34%
  • uniswapUniswap(UNI)$9.701.26%
  • litecoinLitecoin(LTC)$71.17-1.30%
  • CantonCanton(CC)$0.134944-1.34%
  • suiSui(SUI)$1.256.47%
  • Ethena USDeEthena USDe(USDE)$1.000.02%
  • avalanche-2Avalanche(AVAX)$11.001.34%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.657.63%
  • daiDai(DAI)$1.000.01%
  • USD1USD1(USD1)$1.00-0.01%
  • hedera-hashgraphHedera(HBAR)$0.093966-0.02%
  • BittensorBittensor(TAO)$324.79-1.58%
  • shiba-inuShiba Inu(SHIB)$0.000006-0.77%
  • crypto-com-chainCronos(CRO)$0.0672792.43%
  • Global DollarGlobal Dollar(USDG)$1.00-0.01%
  • BitwayBitway(BTW)$1.1911.07%
  • EthenaEthena(ENA)$0.2803944.18%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • quant-networkQuant(QNT)$186.5651.68%
  • MemeCoreMemeCore(M)$1.19-2.80%
  • OndoOndo(ONDO)$0.552.35%
  • tether-goldTether Gold(XAUT)$4,278.540.01%
  • okbOKB(OKB)$121.120.00%
  • Ripple USDRipple USD(RLUSD)$1.000.01%
  • Circle USYCCircle USYC(USYC)$1.140.00%
  • aaveAave(AAVE)$155.360.13%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.150.11%
  • Pump.funPump.fun(PUMP)$0.0048779.97%
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

They Promised Us Agents, but All We Got Were Static Chains

February 10, 2025
in AI & Technology
Reading Time: 5 mins read
A A
They Promised Us Agents, but All We Got Were Static Chains
ShareShareShareShareShare

In the spring of 2023, the world got excited about the emergence of LLM-based AI agents. Powerful demos like AutoGPT and BabyAGI demonstrated the potential of LLMs running in a loop, choosing the next action, observing its results, and choosing the next action, one step at a time (also known as the ReACT framework). This new method was expected to power agents that autonomously and generically perform multi-step tasks. Give it an objective and a set of tools and it will take care of the rest. By the end of 2024, the landscape will be full of AI agents and AI agent-building frameworks. But how do they measure against the promise?

It is safe to say that the agents powered by the naive ReACT framework suffer from severe limitations. Give them a task that requires more than a few steps, using more than a few tools and they will miserably fail. Beyond their obvious latency issues, they will lose track, fail to follow instructions, stop too early or stop too late, and produce wildly different results on each attempt. And it is no wonder. The ReACT framework takes the limitations of unpredictable LLMs and compounds them by the number of steps. However, agent builders looking to solve real-world use cases, especially in the enterprise, cannot do with that level of performance. They need reliable, predictable, and explainable results for complex multi-step workflows. And they need AI systems that mitigate, rather than exacerbate, the unpredictable nature of LLMs.

YOU MAY ALSO LIKE

How To Improve Your Router’s Security In 10 Minutes

Humanoid Robots Are Getting Even Creepier (This One Can Cry On Command)

So how are agents built in the enterprise today? For use cases that require more than a few tools and a few steps (e.g. conversational RAG), today agent builders have largely abandoned the dynamic and autonomous promise of ReACT for methods that heavily rely on static chaining – the creation of predefined chains designed to solve a specific use case. This approach resembles traditional software engineering and is far from the agentic promise of ReACT. It achieves higher levels of control and reliability but lacks autonomy and flexibility. Solutions are therefore development intensive, narrow in application, and too rigid to address high levels of variation in the input space and the environment.

To be sure, static chaining practices can vary in how “static” they are. Some chains use LLMs only to perform atomic steps (for example, to extract information, summarize text, or draft a message) while others also use LLMs to make some decisions dynamically at runtime (for example, an LLM routing between alternative flows in the chain or an LLM validating the outcome of a step to determine whether it should be run again). In any event, as long as LLMs are responsible for any dynamic decision-making in the solution – we are inevitably caught in a tradeoff between reliability and autonomy. The more a solution is static, is more reliable and predictable but also less autonomous and therefore more narrow in application and more development-intensive. The more a solution is dynamic and autonomous, is more generic and simple to build but also less reliable and predictable.

This tradeoff can be represented in the following graphic:

 

This begs the question, why have we yet to see an agentic framework that can be placed in the upper right quadrant? Are we doomed to forever trade off reliability for autonomy? Can we not get a framework that provides the simple interface of a ReACT agent (take an objective and a set of tools and figure it out) without sacrificing reliability?

The answer is – we can and we will! But for that, we need to realize that we’ve been doing it all wrong. All current agent-building frameworks share a common flaw: they rely on LLMs as the dynamic, autonomous component. However, the crucial element we’re missing—what we need to create agents that are both autonomous and reliable—is planning technology. And LLMs are NOT great planners.

But first, what is “planning”? By “planning” we mean the ability to explicitly model alternative courses of action that lead to a desired result and to efficiently explore and exploit these alternatives under budget constraints. Planning should be done at both the macro and micro levels. A macro-plan breaks down a task into dependent and independent steps that must be executed to achieve the desired outcome. What is often overlooked is the need for micro-planning aimed to guarantee desired outcomes at the step level. There are many available strategies for increasing reliability and achieving guarantees at the single-step level by using more inference-time computing. For example, you could paraphrase semantic search queries multiple times, you can retrieve more context per a given query, can use a larger model, and you can get more inferences from an LLM – all resulting in more requirements-satisfying results from which to choose the best one. A good micro-planner can efficiently use inference-time computing to achieve the best results under a given compute and latency budget. To scale the resource investment as needed by the particular task at hand. That way, planful AI systems can mitigate the probabilistic nature of LLMs to achieve guaranteed outcomes at the step level. Without such guarantees, we’re back to the compounding error problem that will undermine even the best macro-level plan.

But why can’t LLMs serve as planners? After all, they are capable of translating high-level instructions into reasonable chains of thought or plans defined in natural language or code. The reason is that planning requires more than that. Planning requires the ability to model alternative courses of action that may reasonably lead to the desired outcome AND to reason about the expected utility and expected costs (in compute and/or latency) of each alternative. While LLMs can potentially generate representations of available courses of action, they cannot predict their corresponding expected utility and costs. For example, what are the expected utility and costs of using model X vs. model Y to generate an answer per a particular context? What is the expected utility of looking for a particular piece of information in the indexed documents corpus vs. an API call to the CRM? Your LLM doesn’t begin to have a clue. And for good reason – historical traces of these probabilistic traits are rarely found in the wild and are not included in LLM training data. They also tend to be specific to the particular tool and data environment in which the AI system will operate, unlike the general knowledge that LLMs can acquire. And even if LLMs could predict expected utility and costs, reasoning about them to choose the most effective course of action is a logical decision-theoretical deduction, that cannot be assumed to be reliably performed by LLMs’ next token predictions.

So what are the missing ingredients for AI planning technology? We need planner models that can learn from experience and simulation to explicitly model alternative courses of action and corresponding utility and cost probabilities per a particular task in a particular tool and data environment. We need a Plan Definition Language (PDL) that can be used to represent and reason about said courses of action and probabilities. We need an execution engine that can deterministically and efficiently execute a given plan defined in PDL.

Some people are already hard at work on delivering on this promise. Until then, keep building static chains. Just please don’t call them “agents”.

Credit: Source link

ShareTweetSendSharePin

Related Posts

How To Improve Your Router’s Security In 10 Minutes
AI & Technology

How To Improve Your Router’s Security In 10 Minutes

September 27, 2026
Humanoid Robots Are Getting Even Creepier (This One Can Cry On Command)
AI & Technology

Humanoid Robots Are Getting Even Creepier (This One Can Cry On Command)

September 27, 2026
AI Coding Agents for Enterprise: IP Indemnity, Data Residency and 500-Seat Cost Compared
AI & Technology

AI Coding Agents for Enterprise: IP Indemnity, Data Residency and 500-Seat Cost Compared

September 27, 2026
A Coding Guide to Google Research’s MSEB: Writing Sound Encoders to the Benchmark Contract and Scoring Them Across Classification, Clustering, Retrieval and Segmentation
AI & Technology

A Coding Guide to Google Research’s MSEB: Writing Sound Encoders to the Benchmark Contract and Scoring Them Across Classification, Clustering, Retrieval and Segmentation

September 27, 2026
Next Post
From Keyword Search to OpenAI’s Deep Research: How AI is Redefining Knowledge Discovery

From Keyword Search to OpenAI's Deep Research: How AI is Redefining Knowledge Discovery

Leave a Reply Cancel reply

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

Search

No Result
View All Result
Fans gather at Dolly Parton’s statue in her hometown 

Fans gather at Dolly Parton’s statue in her hometown 

September 23, 2026
Ponce Financial Group: Potential Preferred Stock Repurchase Makes It Look More Interesting

Ponce Financial Group: Potential Preferred Stock Repurchase Makes It Look More Interesting

September 22, 2026
Iran’s president hits out at ‘bully’ Trump in UN speech but signals willingness to talk – The Guardian

Iran’s president hits out at ‘bully’ Trump in UN speech but signals willingness to talk – The Guardian

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