PART 2 โ Taxonomy: What Kind of Agent Are You Building? โ
The 5 Levels โ From Brain to Self-Evolving System โ
The Intuition โ
Think of hiring: you wouldn't hire a contractor without knowing the job scope. Same here โ pick the right level of agent for the complexity of the task.
Level 0: Core Reasoning System (The Encyclopedia) โ
- What: LLM alone, no tools, no memory
- What it can do: Answer from training data
- Production use: FAQ chatbot on known, static content
- Limit: Knowledge cutoff. Can't act. Can't look things up.
Level 1: The Connected Problem-Solver โ
- What: LLM + external tools (Search, Calculator, DB queries)
- What it can do: Answer about real-time events, current data
- Production use: Customer support agent that can look up order status
- Technique: Function calling โ the LLM decides which tool to use, ADK executes it
Level 2: The Strategic Problem-Solver โ
- What: LLM + tools + planning (multi-step, uses output of step N as input to step N+1)
- The Key Concept: Context Engineering โ the output of one step is shaped into precise input for the next
- Production example (coffee shop case):
Step 1: maps_tool("Mountain View", "SF") โ "Millbrae"
Step 2: search_tool("good coffee in Millbrae") <-- uses output from step 1- Production use: Research agent, code review pipeline, document analysis workflows
Level 3: The Collaborative Multi-Agent System โ
- What: A "Project Manager" agent + specialized sub-agents
- Why not one giant agent: Specialization. Each agent has a focused system prompt, relevant tools, and smaller context โ cheaper, faster, more reliable
- Production example โ Product Launch:
OrchestratorAgent --> MarketingAgent (writes press release)
--> WebDevAgent (builds landing page)
--> DataAgent (pulls competitor analysis)- Communication: Agents share state via
session.stateor A2A protocol
Level 4: The Self-Evolving System โ
- What: System creates new tools or new agents on the fly when it detects a capability gap
- Production use: Very experimental. Research/internal automation. Not for customer-facing production yet.
- The key skill: Agent identifies "I don't have a tool for this" and generates one dynamically
The Production Trap โ
WARNING
Building at Level 3 or 4 before you've validated Level 1. Most production failures come from over-engineering the agent architecture before the individual agent is proven to work reliably on its own task.
Start at the lowest level that solves the problem. Add complexity only when you hit a real limit.
Recall Hook โ
Encyclopedia โ Expert โ Strategist โ Manager โ Self-Growing Org โ pick your level before you write a line of code.
Sources โ
- Google ADK Whitepaper: Introduction to Agents
Know a production example of each level? Add it here โ real examples make this more useful.