AI Agents: Hype vs. Reality · Kadoa
How Kadoa worksOpen DatasetsChangelogInvestment ResearchReal-Time AlertsDocuments & FilingsPortfolio MonitoringDatasetsView all use casesBlogAbout UsCareersWebinars<br>ProductUse CasesPricingCompanyDocsContact
Sign inGet started
AI Agents: Hype vs. Reality<br>Adrian Krebs,Co-Founder & CEO of Kadoa<br>16 December 2024
TechBack to blog<br>The promise of autonomous AI agents that can perform complex tasks has generated a lot of excitement.<br>By interacting with external tools and functions, LLMs can carry out multi-step workflows without human intervention.
But reality is proving more challenging than anticipated.
The WebArena leaderboard,<br>which benchmarks LLM agents against real-world tasks, shows that even the best-performing models have a success rate of<br>only 45.7%.
What is an AI agent?
The term "AI agent" isn't really defined, and there seems to a lot of controversy about what an agent even is.<br>An AI agent can be defined as an LLM that is given agency (usually function calling in RAG setting) to make high-level decisions about how to perform tasks in an environment.
There are two main architectural approaches to building AI agents:
Monolithic agents: A single large model handles the entire task and makes all decisions and actions based on its full<br>context understanding. This approach leverages the emergent capabilities of large models and avoids information loss<br>from dividing the task.
Multi-agent systems: The task is broken down into subtasks, each handled by a smaller, more specialized agent. Instead of trying to have one large general purpose agent that is hard to control and test, we can use many smaller<br>agents that basically just pick the right strategy for a specific sub-task. This approach is sometimes necessary due to<br>practical constraints like context window size or the need for different skillsets.
In theory, a monolithic agent with infinite context size and perfect attention would be ideal. Multi-agent systems will<br>always be less effective than monolithic systems on a given problem because of less context.<br>Individual agents work best when they have entirely different functionalities.
One great summary comes from this HackerNews comment by an OpenAI employee:
I'd say single, big API calls are better when:
Much of the information/substeps are interrelated
You want immediate output for a user-facing app, without having to wait for intermediate steps
Multiple, sequenced API calls are better when:
You can decompose the task into smaller steps, each of which do not require full context
There's a tree or graph of steps, and you want to prune irrelevant branches as you proceed from the root
You want to have some 100% reliabile logic live outside of the LLM in parsing/routing code
You want to customize the prompts based on results from previous steps
Challenges in Practice
After seeing many attempts to AI agents, I believe it's too early, too expensive, too slow, too unreliable.<br>It feels like many AI agent startups are waiting for a model breakthrough that will start the race to productize agents.
Reliability: As we all know, LLMs are prone to hallucinations and inconsistencies. Chaining multiple AI steps<br>compounds these issues, especially for tasks requiring exact outputs.
Performance and costs: GPT-4o, Gemini-2.0, and Claude Sonnet are working quite well with tool usage/function calling,<br>but they are still slow and expensive, particularly if you need to do loops and automatic retries.
Legal concerns: Companies may be held liable for the mistakes of their agents.<br>A recent example is Air Canada being<br>ordered to pay a customer who was misled by the airline's chatbot.
User trust: The "black box" nature of AI agents and stories like the above makes it hard for users to understand and<br>trust their outputs. Gaining user trust for sensitive tasks involving payments or personal information will be hard (<br>paying bills, shopping, etc.).
Real-World Attempts
Several startups and incumbent players are working on general AI agents, but most are still rather experimental:
adept.ai - $350M funding, the leadership team was recently acqui-hired by Amazon
Runner H - $220M funding, not publicly accessible yet
MultiOn - funding unknown, their API-first approach seems promising
Browserbase - $27M funding, provides the infrastructure layer for autonomous browser agents. Many vertical AI startups are already relaying on them.
Only MultiOn and Browserbase seems to be pursuing the "give it instructions and watch it go" approach, which is more in line with the<br>promise of AI agents. Many others are going down the record-and-replay RPA route, which may be necessary for reliability at this stage.
Large players are also bringing agentic capabilities to desktops and browsers, and it looks like we'll get native AI<br>integrations on a system level:
Claude Computer Use
Microsoft announced Copilot Studio to build custom copilot agents
Project Mariner from Google Deepmind offers...