[Survey Analysis] The Rise of LLM-Agents: From Text Gen to Autonomous Controllers
Exploring large language model based intelligent agents: Definitions, methods, and prospects
This paper provides a comprehensive survey of Large Language Model (LLM) based intelligent agents, defining a unified framework for single-agent and multi-agent systems. It categorizes the core components—Planning, Memory, Rethinking, and Action—and highlights how these agents achieve state-of-the-art generalization across natural sciences, social sciences, and engineering domains.
Executive Summary
TL;DR: This seminal survey explores the evolution of AI from rule-based systems and Reinforcement Learning (RL) to the current frontier: LLM-based Intelligent Agents. By utilizing LLMs as the "brain" for reasoning and planning, these agents overcome the sample inefficiency of RL and the passivity of traditional LLMs. They are no longer just chatbots; they are autonomous entities capable of planning, remembering, and utilizing external tools to achieve complex goals.
Positioning: This work serves as a foundational taxonomy, mapping the chaotic landscape of LLM-agent research into a rigorous framework of Single-Agent and Multi-Agent Systems (MAS).
Problem & Motivation: Why Models Need "Agency"
Traditional AI agents (RL-based) are "brittle"—they require millions of trials to learn a single task and fail when the environment shifts slightly. On the other hand, LLMs are brilliant but "handicapped." They know how to solve a problem but cannot "act" on it due to:
- Static Knowledge: They are frozen in their last training date.
- Lack of Tools: They can describe a calculation but cannot use a calculator accurately.
- Short-term Focus: They forget the beginning of a long conversation.
The authors argue that by wrapping LLMs in an Agent Framework, we provide the model with "hands" (Tools), "memory" (Vector Databases), and "critical thinking" (Reflection).
Methodology: The Anatomy of an Agent
The paper deconstructs an LLM-based agent into five vital organs:
1. Planning (The Strategy)
LLMs use In-Context Learning (like Chain-of-Thought) or External Planners (like PDDL) to break down a massive goal (e.g., "Build a house in Minecraft") into granular, executable steps.

2. Memory (The State)
- Short-term: Handled by the context window.
- Long-term: Powered by RAG (Retrieval-Augmented Generation) and vector databases, allowing agents to recall "experiences" from days or weeks ago.
3. Rethinking (The Self-Correction)
This is the "closed-loop" part of the system. If an agent tries to run code and fails, the Rethink module analyzes the error message and re-plans.
4. Action (The Interaction)
Agents perform actions through API calls, code execution, or controlling physical robotic arms.

Multi-Agent Systems (MAS): The Power of Crowds
One agent is powerful; a "society" of agents is transformative. The paper highlights models like ChatDev, where agents take on roles (CEO, Programmer, Reviewer) to build software.
- Cooperative: Agents share a global memory pool.
- Competitive: Agents debate to find the best answer (Multi-agent Debate).

Experimental Analysis & Benchmarks
The survey reviews benchmarks like ToolBench and AgentBench. Key finding: LLM-based agents are beginning to show "human-like" behavior in social simulations (Generative Agents) and are solving university-level math problems by writing their own Python scripts to verify steps.
Key Performance Metrics:
- Generalization: High success in zero-shot tasks.
- Robustness: Agents using "Self-Reflection" (Reflexion) show significantly higher accuracy than basic LLMs on reasoning tasks.
Critical Insight & Future Outlook
While the progress is staggering, the paper identifies "Intrinsic Constraints" as the primary bottleneck:
- Hallucination: If the "brain" hallucinates, the "hands" perform the wrong action, leading to potentially dangerous real-world outcomes.
- Security: Giving an agent access to your terminal or bank account requires a degree of trust and "permission management" that does not yet exist.
The Next Frontier: Multimodality
The integration of LMMs (Large Multimodal Models) like GPT-4V will allow agents to "see" the environment directly rather than relying on text descriptions, making them truly embodied participants in the physical world.
Takeaway: We are witnessing the birth of the **"AI Operating System,"**where the LLM is the CPU and the Agent Framework is the OS managing memory and peripherals.
