TLDR: This paper provides a comprehensive reflection on the evolving field of agent technology, contrasting advancements driven by Large Language Models (LLMs) with classic Multi-Agent Systems (MAS). It delves into the architectural models of contemporary LLM agents, examining how their properties align with or diverge from classic MAS concepts like the Belief-Desire-Intention (BDI) model, agent-environment interaction (Agents & Artifacts vs. Tools), communication (Speech Act Theory vs. LLM-mediated dialogue), and social phenomena (coordination, cooperation, negotiation, and norms). The paper highlights the transformative potential of LLMs in endowing agents with flexibility and natural language understanding, while also identifying key challenges such as hallucinations, lack of standardization, and non-determinism, and proposing future research directions.
The landscape of artificial intelligence is undergoing a profound transformation, driven by the rapid advancements in Large Language Models (LLMs). A recent research paper, “Contemporary Agent Technology: LLM-Driven Advancements vs Classic Multi-Agent Systems”, offers a comprehensive look at how these powerful models are reshaping the field of intelligent software agents and Multi-Agent Systems (MAS).
Historically, AI agents and MAS were built on symbolic AI, relying on predefined rules and explicit programming. Think of systems like Jason and JADE, which enabled agents to act autonomously and interact based on clear, logical foundations. However, LLMs have introduced a new paradigm, shifting from these ‘glass box’ symbolic approaches to ‘black box’ sub-symbolic AI.
LLMs: A New Kind of Knowledge System
Traditional Knowledge-Based Systems (KBS) were like meticulously organized libraries. They had a ‘knowledge base’ of explicit facts and ‘IF-THEN’ rules, and an ‘inference engine’ to answer queries. You could ‘Tell’ them new facts, and they would update their understanding. These systems were auditable and explainable, but also rigid and prone to failure if a question fell outside their programmed rules.
LLMs operate differently. They are ‘black boxes’ that encode implicit knowledge within billions of neural connections, formed by statistical patterns in vast training data. When you ‘Ask’ an LLM a question, it performs probabilistic pattern-matching to generate a plausible sequence of words. Unlike traditional KBS, LLMs don’t have a true ‘Tell’ service to permanently update their core beliefs. Instead, they use ‘in-context learning’ (providing temporary facts within a prompt) or ‘fine-tuning’ (a costly retraining process) to adapt. This flexibility comes with challenges, such as the potential for ‘hallucinations’ – generating false but plausible information.
Building a Single LLM Agent
The construction of an individual LLM agent involves several key components:
- Profile: This defines the agent’s identity and behavior, from simple role descriptions to complex personas, guiding its responses and actions.
- Memory: Agents use short-term memory (the LLM’s context window for ongoing dialogue) and long-term memory (skill libraries, past experiences, and Retrieval Augmented Generation or RAG, which allows access to external knowledge bases).
- Planning: LLMs are adept at breaking down complex problems and generating detailed plans, often refining them through feedback-driven iteration.
- Action Execution: Agents interact with the external world using ‘tools’ – APIs, web searches, calculators, or code executors. Protocols like the Model Context Protocol (MCP) aim to standardize this interaction.
- Communication and Interaction: Natural language serves as a universal medium, enabling flexible and intuitive interactions, though it introduces challenges like ambiguity.
- Perception: LLM agents are increasingly multimodal, processing not just text but also images, video, and sound.
- Learning, Adaptation, and Evolution: Agents continuously learn and adapt through mechanisms like Reinforcement Learning from Human Feedback (RLHF) and ‘forward alignment,’ which shapes their behavior during training to align with human values.
LLM-Powered Multi-Agent Systems
For complex problems, multiple LLM agents can work together in a Multi-Agent System. These systems can be classified by:
- Control Flow: Centralized (a manager agent orchestrates others), decentralized (agents interact peer-to-peer), or hybrid.
- Collaboration Model: Agents can cooperate through task decomposition, debate and critique, role-playing, negotiation, or emergent ‘swarm intelligence’ where collective goals are achieved without direct commands.
- Agent Homogeneity: Systems can have agents powered by the same LLM, diverse LLMs, or a combination of LLM-powered agents and traditional rule-based agents.
Classic MAS Concepts Through an LLM Lens
The paper critically examines how LLM agents align with foundational MAS principles:
- Core Agent Properties: LLM agents demonstrate autonomy, reactivity, pro-activeness, and social ability, but the depth and nature of these properties are still debated.
- The BDI Model: The Belief-Desire-Intention (BDI) model, a cornerstone of rational agent architecture, is being re-interpreted. While LLMs don’t ‘believe’ or ‘desire’ in a human sense, the BDI framework helps structure their behavior. LLMs can enrich beliefs, formulate desires, and dynamically generate plans, though challenges like computational cost and hallucinations remain.
- Agents & Artifacts vs. LLM-Agents with Tools: Classic MAS used ‘artifacts’ (stateful, programmable environmental entities with formal interfaces). LLM agents use ‘tools’ (stateless capabilities accessed via natural language descriptions). This represents a shift from formal, predictable systems to more flexible, powerful, but less predictable ones.
- Communication: Classic MAS relied on formal Agent Communication Languages (ACLs) like FIPA-ACL, which were clear but rigid. LLM-mediated dialogue uses natural language, offering flexibility but also ambiguity.
- Coordination, Cooperation, and Negotiation: In classic MAS, these were achieved through explicit protocols and game theory. In LLM agent societies, they often emerge from context-aware dialogue and shared intent, making outcomes less predictable but more human-like.
- Norms and Social Laws: Classic MAS used formal logic to define and enforce norms. LLM agents rely on implicit norms embedded in their prompts and alignment training, with self-correction and ‘Constitutional AI’ guiding their behavior. Research shows that social conventions can spontaneously emerge in LLM populations.
Also Read:
- Unlocking Deeper Understanding: How Multi-Agent LLMs Are Revolutionizing Causal AI
- Agentic Reinforcement Learning: Empowering LLMs as Autonomous Decision-Makers
Challenges and Future Directions
Despite their potential, LLM-driven agent technologies face significant challenges: the rapid pace of development makes comprehensive surveys difficult, there’s a lack of standardization, hallucinations remain a concern, and issues like privacy, security, non-determinism, and computational cost need addressing. The ‘black box’ nature of LLMs also hinders explainability and repeatability.
Future research will focus on deeper comparisons with game-theoretic approaches, developing software engineering-centric classifications for development environments, and rigorously evaluating real-world applications to ensure reliability, safety, and ethical alignment.
In essence, the field is moving towards hybrid systems that combine the clarity of formally stated principles with the adaptive, contextual reasoning power of LLMs, promising a future where AI agents are both intelligent and robust.


