Multi-Agent Systems in ADK¶
As agentic applications grow in complexity, structuring them as a single, monolithic agent can become challenging to develop, maintain, and reason about. The Agent Development Kit (ADK) supports building sophisticated applications by composing multiple, distinct BaseAgent
instances into a Multi-Agent System (MAS).
In ADK, a multi-agent system is an application where different agents, often forming a hierarchy, collaborate or coordinate to achieve a larger goal. Structuring your application this way offers significant advantages, including enhanced modularity, specialization, reusability, maintainability, and the ability to define structured control flows using dedicated workflow agents.
You can compose various types of agents derived from BaseAgent
to build these systems:
- LLM Agents: Agents powered by large language models. (See LLM Agents)
- Workflow Agents: Specialized agents (
SequentialAgent
,ParallelAgent
,LoopAgent
) designed to manage the execution flow of their sub-agents. (See Workflow Agents) - Custom agents: Your own agents inheriting from
BaseAgent
with specialized, non-LLM logic. (See Custom Agents)
The following sections detail the core ADK primitives—such as agent hierarchy, workflow agents, and interaction mechanisms—that enable you to construct and manage these multi-agent systems effectively.
2. ADK Primitives for Agent Composition¶
ADK provides core building blocks—primitives—that enable you to structure and manage interactions within your multi-agent system.
2.1. Agent Hierarchy (parent_agent
, sub_agents
)¶
The foundation for structuring multi-agent systems is the parent-child relationship defined in BaseAgent
.
- Establishing Hierarchy: You create a tree structure by passing a list of agent instances to the
sub_agents
argument when initializing a parent agent. ADK automatically sets theparent_agent
attribute on each child agent during initialization (google.adk.agents.base_agent.py
-model_post_init
). - Single Parent Rule: An agent instance can only be added as a sub-agent once. Attempting to assign a second parent will result in a
ValueError
. - Importance: This hierarchy defines the scope for Workflow Agents and influences the potential targets for LLM-Driven Delegation. You can navigate the hierarchy using
agent.parent_agent
or find descendants usingagent.find_agent(name)
.
# Conceptual Example: Defining Hierarchy
from google.adk.agents import LlmAgent, BaseAgent
# Define individual agents
greeter = LlmAgent(name="Greeter", model="gemini-2.0-flash")
task_doer = BaseAgent(name="TaskExecutor") # Custom non-LLM agent
# Create parent agent and assign children via sub_agents
coordinator = LlmAgent(
name="Coordinator",
model="gemini-2.0-flash",
description="I coordinate greetings and tasks.",
sub_agents=[ # Assign sub_agents here
greeter,
task_doer
]
)
# Framework automatically sets:
# assert greeter.parent_agent == coordinator
# assert task_doer.parent_agent == coordinator
2.2. Workflow Agents as Orchestrators¶
ADK includes specialized agents derived from BaseAgent
that don't perform tasks themselves but orchestrate the execution flow of their sub_agents
.
-
SequentialAgent
: Executes itssub_agents
one after another in the order they are listed.- Context: Passes the same
InvocationContext
sequentially, allowing agents to easily pass results via shared state.
# Conceptual Example: Sequential Pipeline from google.adk.agents import SequentialAgent, LlmAgent step1 = LlmAgent(name="Step1_Fetch", output_key="data") # Saves output to state['data'] step2 = LlmAgent(name="Step2_Process", instruction="Process data from state key 'data'.") pipeline = SequentialAgent(name="MyPipeline", sub_agents=[step1, step2]) # When pipeline runs, Step2 can access the state['data'] set by Step1.
- Context: Passes the same
-
ParallelAgent
: Executes itssub_agents
in parallel. Events from sub-agents may be interleaved.- Context: Modifies the
InvocationContext.branch
for each child agent (e.g.,ParentBranch.ChildName
), providing a distinct contextual path which can be useful for isolating history in some memory implementations. - State: Despite different branches, all parallel children access the same shared
session.state
, enabling them to read initial state and write results (use distinct keys to avoid race conditions).
# Conceptual Example: Parallel Execution from google.adk.agents import ParallelAgent, LlmAgent fetch_weather = LlmAgent(name="WeatherFetcher", output_key="weather") fetch_news = LlmAgent(name="NewsFetcher", output_key="news") gatherer = ParallelAgent(name="InfoGatherer", sub_agents=[fetch_weather, fetch_news]) # When gatherer runs, WeatherFetcher and NewsFetcher run concurrently. # A subsequent agent could read state['weather'] and state['news'].
- Context: Modifies the
-
LoopAgent
: Executes itssub_agents
sequentially in a loop.- Termination: The loop stops if the optional
max_iterations
is reached, or if any sub-agent yields anEvent
withactions.escalate=True
. - Context & State: Passes the same
InvocationContext
in each iteration, allowing state changes (e.g., counters, flags) to persist across loops.
# Conceptual Example: Loop with Condition from google.adk.agents import LoopAgent, LlmAgent, BaseAgent from google.adk.events import Event, EventActions from google.adk.agents.invocation_context import InvocationContext from typing import AsyncGenerator class CheckCondition(BaseAgent): # Custom agent to check state async def _run_async_impl(self, ctx: InvocationContext) -> AsyncGenerator[Event, None]: status = ctx.session.state.get("status", "pending") is_done = (status == "completed") yield Event(author=self.name, actions=EventActions(escalate=is_done)) # Escalate if done process_step = LlmAgent(name="ProcessingStep") # Agent that might update state['status'] poller = LoopAgent( name="StatusPoller", max_iterations=10, sub_agents=[process_step, CheckCondition(name="Checker")] ) # When poller runs, it executes process_step then Checker repeatedly # until Checker escalates (state['status'] == 'completed') or 10 iterations pass.
- Termination: The loop stops if the optional
2.3. Interaction & Communication Mechanisms¶
Agents within a system often need to exchange data or trigger actions in one another. ADK facilitates this through:
a) Shared Session State (session.state
)¶
The most fundamental way for agents operating within the same invocation (and thus sharing the same Session
object via the InvocationContext
) to communicate passively.
- Mechanism: One agent (or its tool/callback) writes a value (
context.state['data_key'] = processed_data
), and a subsequent agent reads it (data = context.state.get('data_key')
). State changes are tracked viaCallbackContext
. - Convenience: The
output_key
property onLlmAgent
automatically saves the agent's final response text (or structured output) to the specified state key. - Nature: Asynchronous, passive communication. Ideal for pipelines orchestrated by
SequentialAgent
or passing data acrossLoopAgent
iterations. - See Also: State Management
# Conceptual Example: Using output_key and reading state
from google.adk.agents import LlmAgent, SequentialAgent
agent_A = LlmAgent(name="AgentA", instruction="Find the capital of France.", output_key="capital_city")
agent_B = LlmAgent(name="AgentB", instruction="Tell me about the city stored in state key 'capital_city'.")
pipeline = SequentialAgent(name="CityInfo", sub_agents=[agent_A, agent_B])
# AgentA runs, saves "Paris" to state['capital_city'].
# AgentB runs, its instruction processor reads state['capital_city'] to get "Paris".
b) LLM-Driven Delegation (Agent Transfer)¶
Leverages an LlmAgent
's understanding to dynamically route tasks to other suitable agents within the hierarchy.
- Mechanism: The agent's LLM generates a specific function call:
transfer_to_agent(agent_name='target_agent_name')
. - Handling: The
AutoFlow
, used by default when sub-agents are present or transfer isn't disallowed, intercepts this call. It identifies the target agent usingroot_agent.find_agent()
and updates theInvocationContext
to switch execution focus. - Requires: The calling
LlmAgent
needs clearinstructions
on when to transfer, and potential target agents need distinctdescription
s for the LLM to make informed decisions. Transfer scope (parent, sub-agent, siblings) can be configured on theLlmAgent
. - Nature: Dynamic, flexible routing based on LLM interpretation.
# Conceptual Setup: LLM Transfer
from google.adk.agents import LlmAgent
booking_agent = LlmAgent(name="Booker", description="Handles flight and hotel bookings.")
info_agent = LlmAgent(name="Info", description="Provides general information and answers questions.")
coordinator = LlmAgent(
name="Coordinator",
instruction="You are an assistant. Delegate booking tasks to Booker and info requests to Info.",
description="Main coordinator.",
# AutoFlow is typically used implicitly here
sub_agents=[booking_agent, info_agent]
)
# If coordinator receives "Book a flight", its LLM should generate:
# FunctionCall(name='transfer_to_agent', args={'agent_name': 'Booker'})
# ADK framework then routes execution to booking_agent.
c) Explicit Invocation (AgentTool
)¶
Allows an LlmAgent
to treat another BaseAgent
instance as a callable function or Tool.
- Mechanism: Wrap the target agent instance in
AgentTool
and include it in the parentLlmAgent
'stools
list.AgentTool
generates a corresponding function declaration for the LLM. - Handling: When the parent LLM generates a function call targeting the
AgentTool
, the framework executesAgentTool.run_async
. This method runs the target agent, captures its final response, forwards any state/artifact changes back to the parent's context, and returns the response as the tool's result. - Nature: Synchronous (within the parent's flow), explicit, controlled invocation like any other tool.
- (Note:
AgentTool
needs to be imported and used explicitly).
# Conceptual Setup: Agent as a Tool
from google.adk.agents import LlmAgent, BaseAgent
from google.adk.tools import agent_tool
from pydantic import BaseModel
# Define a target agent (could be LlmAgent or custom BaseAgent)
class ImageGeneratorAgent(BaseAgent): # Example custom agent
name: str = "ImageGen"
description: str = "Generates an image based on a prompt."
# ... internal logic ...
async def _run_async_impl(self, ctx): # Simplified run logic
prompt = ctx.session.state.get("image_prompt", "default prompt")
# ... generate image bytes ...
image_bytes = b"..."
yield Event(author=self.name, content=types.Content(parts=[types.Part.from_bytes(image_bytes, "image/png")]))
image_agent = ImageGeneratorAgent()
image_tool = agent_tool.AgentTool(agent=image_agent) # Wrap the agent
# Parent agent uses the AgentTool
artist_agent = LlmAgent(
name="Artist",
model="gemini-2.0-flash",
instruction="Create a prompt and use the ImageGen tool to generate the image.",
tools=[image_tool] # Include the AgentTool
)
# Artist LLM generates a prompt, then calls:
# FunctionCall(name='ImageGen', args={'image_prompt': 'a cat wearing a hat'})
# Framework calls image_tool.run_async(...), which runs ImageGeneratorAgent.
# The resulting image Part is returned to the Artist agent as the tool result.
These primitives provide the flexibility to design multi-agent interactions ranging from tightly coupled sequential workflows to dynamic, LLM-driven delegation networks.
3. Common Multi-Agent Patterns using ADK Primitives¶
By combining ADK's composition primitives, you can implement various established patterns for multi-agent collaboration.
Coordinator/Dispatcher Pattern¶
- Structure: A central
LlmAgent
(Coordinator) manages several specializedsub_agents
. - Goal: Route incoming requests to the appropriate specialist agent.
- ADK Primitives Used:
- Hierarchy: Coordinator has specialists listed in
sub_agents
. - Interaction: Primarily uses LLM-Driven Delegation (requires clear
description
s on sub-agents and appropriateinstruction
on Coordinator) or Explicit Invocation (AgentTool
) (Coordinator includesAgentTool
-wrapped specialists in itstools
).
- Hierarchy: Coordinator has specialists listed in
# Conceptual Code: Coordinator using LLM Transfer
from google.adk.agents import LlmAgent
billing_agent = LlmAgent(name="Billing", description="Handles billing inquiries.")
support_agent = LlmAgent(name="Support", description="Handles technical support requests.")
coordinator = LlmAgent(
name="HelpDeskCoordinator",
model="gemini-2.0-flash",
instruction="Route user requests: Use Billing agent for payment issues, Support agent for technical problems.",
description="Main help desk router.",
# allow_transfer=True is often implicit with sub_agents in AutoFlow
sub_agents=[billing_agent, support_agent]
)
# User asks "My payment failed" -> Coordinator's LLM should call transfer_to_agent(agent_name='Billing')
# User asks "I can't log in" -> Coordinator's LLM should call transfer_to_agent(agent_name='Support')
Sequential Pipeline Pattern¶
- Structure: A
SequentialAgent
containssub_agents
executed in a fixed order. - Goal: Implement a multi-step process where the output of one step feeds into the next.
- ADK Primitives Used:
- Workflow:
SequentialAgent
defines the order. - Communication: Primarily uses Shared Session State. Earlier agents write results (often via
output_key
), later agents read those results fromcontext.state
.
- Workflow:
# Conceptual Code: Sequential Data Pipeline
from google.adk.agents import SequentialAgent, LlmAgent
validator = LlmAgent(name="ValidateInput", instruction="Validate the input.", output_key="validation_status")
processor = LlmAgent(name="ProcessData", instruction="Process data if state key 'validation_status' is 'valid'.", output_key="result")
reporter = LlmAgent(name="ReportResult", instruction="Report the result from state key 'result'.")
data_pipeline = SequentialAgent(
name="DataPipeline",
sub_agents=[validator, processor, reporter]
)
# validator runs -> saves to state['validation_status']
# processor runs -> reads state['validation_status'], saves to state['result']
# reporter runs -> reads state['result']
Parallel Fan-Out/Gather Pattern¶
- Structure: A
ParallelAgent
runs multiplesub_agents
concurrently, often followed by a later agent (in aSequentialAgent
) that aggregates results. - Goal: Execute independent tasks simultaneously to reduce latency, then combine their outputs.
- ADK Primitives Used:
- Workflow:
ParallelAgent
for concurrent execution (Fan-Out). Often nested within aSequentialAgent
to handle the subsequent aggregation step (Gather). - Communication: Sub-agents write results to distinct keys in Shared Session State. The subsequent "Gather" agent reads multiple state keys.
- Workflow:
# Conceptual Code: Parallel Information Gathering
from google.adk.agents import SequentialAgent, ParallelAgent, LlmAgent
fetch_api1 = LlmAgent(name="API1Fetcher", instruction="Fetch data from API 1.", output_key="api1_data")
fetch_api2 = LlmAgent(name="API2Fetcher", instruction="Fetch data from API 2.", output_key="api2_data")
gather_concurrently = ParallelAgent(
name="ConcurrentFetch",
sub_agents=[fetch_api1, fetch_api2]
)
synthesizer = LlmAgent(
name="Synthesizer",
instruction="Combine results from state keys 'api1_data' and 'api2_data'."
)
overall_workflow = SequentialAgent(
name="FetchAndSynthesize",
sub_agents=[gather_concurrently, synthesizer] # Run parallel fetch, then synthesize
)
# fetch_api1 and fetch_api2 run concurrently, saving to state.
# synthesizer runs afterwards, reading state['api1_data'] and state['api2_data'].
Hierarchical Task Decomposition¶
- Structure: A multi-level tree of agents where higher-level agents break down complex goals and delegate sub-tasks to lower-level agents.
- Goal: Solve complex problems by recursively breaking them down into simpler, executable steps.
- ADK Primitives Used:
- Hierarchy: Multi-level
parent_agent
/sub_agents
structure. - Interaction: Primarily LLM-Driven Delegation or Explicit Invocation (
AgentTool
) used by parent agents to assign tasks to children. Results are returned up the hierarchy (via tool responses or state).
- Hierarchy: Multi-level
# Conceptual Code: Hierarchical Research Task
from google.adk.agents import LlmAgent
from google.adk.tools import agent_tool
# Low-level tool-like agents
web_searcher = LlmAgent(name="WebSearch", description="Performs web searches for facts.")
summarizer = LlmAgent(name="Summarizer", description="Summarizes text.")
# Mid-level agent combining tools
research_assistant = LlmAgent(
name="ResearchAssistant",
model="gemini-2.0-flash",
description="Finds and summarizes information on a topic.",
tools=[agent_tool.AgentTool(agent=web_searcher), agent_tool.AgentTool(agent=summarizer)]
)
# High-level agent delegating research
report_writer = LlmAgent(
name="ReportWriter",
model="gemini-2.0-flash",
instruction="Write a report on topic X. Use the ResearchAssistant to gather information.",
tools=[agent_tool.AgentTool(agent=research_assistant)]
# Alternatively, could use LLM Transfer if research_assistant is a sub_agent
)
# User interacts with ReportWriter.
# ReportWriter calls ResearchAssistant tool.
# ResearchAssistant calls WebSearch and Summarizer tools.
# Results flow back up.
Review/Critique Pattern (Generator-Critic)¶
- Structure: Typically involves two agents within a
SequentialAgent
: a Generator and a Critic/Reviewer. - Goal: Improve the quality or validity of generated output by having a dedicated agent review it.
- ADK Primitives Used:
- Workflow:
SequentialAgent
ensures generation happens before review. - Communication: Shared Session State (Generator uses
output_key
to save output; Reviewer reads that state key). The Reviewer might save its feedback to another state key for subsequent steps.
- Workflow:
# Conceptual Code: Generator-Critic
from google.adk.agents import SequentialAgent, LlmAgent
generator = LlmAgent(
name="DraftWriter",
instruction="Write a short paragraph about subject X.",
output_key="draft_text"
)
reviewer = LlmAgent(
name="FactChecker",
instruction="Review the text in state key 'draft_text' for factual accuracy. Output 'valid' or 'invalid' with reasons.",
output_key="review_status"
)
# Optional: Further steps based on review_status
review_pipeline = SequentialAgent(
name="WriteAndReview",
sub_agents=[generator, reviewer]
)
# generator runs -> saves draft to state['draft_text']
# reviewer runs -> reads state['draft_text'], saves status to state['review_status']
Iterative Refinement Pattern¶
- Structure: Uses a
LoopAgent
containing one or more agents that work on a task over multiple iterations. - Goal: Progressively improve a result (e.g., code, text, plan) stored in the session state until a quality threshold is met or a maximum number of iterations is reached.
- ADK Primitives Used:
- Workflow:
LoopAgent
manages the repetition. - Communication: Shared Session State is essential for agents to read the previous iteration's output and save the refined version.
- Termination: The loop typically ends based on
max_iterations
or a dedicated checking agent settingactions.escalate=True
when the result is satisfactory.
- Workflow:
# Conceptual Code: Iterative Code Refinement
from google.adk.agents import LoopAgent, LlmAgent, BaseAgent
from google.adk.events import Event, EventActions
from google.adk.agents.invocation_context import InvocationContext
from typing import AsyncGenerator
# Agent to generate/refine code based on state['current_code'] and state['requirements']
code_refiner = LlmAgent(
name="CodeRefiner",
instruction="Read state['current_code'] (if exists) and state['requirements']. Generate/refine Python code to meet requirements. Save to state['current_code'].",
output_key="current_code" # Overwrites previous code in state
)
# Agent to check if the code meets quality standards
quality_checker = LlmAgent(
name="QualityChecker",
instruction="Evaluate the code in state['current_code'] against state['requirements']. Output 'pass' or 'fail'.",
output_key="quality_status"
)
# Custom agent to check the status and escalate if 'pass'
class CheckStatusAndEscalate(BaseAgent):
async def _run_async_impl(self, ctx: InvocationContext) -> AsyncGenerator[Event, None]:
status = ctx.session.state.get("quality_status", "fail")
should_stop = (status == "pass")
yield Event(author=self.name, actions=EventActions(escalate=should_stop))
refinement_loop = LoopAgent(
name="CodeRefinementLoop",
max_iterations=5,
sub_agents=[code_refiner, quality_checker, CheckStatusAndEscalate(name="StopChecker")]
)
# Loop runs: Refiner -> Checker -> StopChecker
# State['current_code'] is updated each iteration.
# Loop stops if QualityChecker outputs 'pass' (leading to StopChecker escalating) or after 5 iterations.
Human-in-the-Loop Pattern¶
- Structure: Integrates human intervention points within an agent workflow.
- Goal: Allow for human oversight, approval, correction, or tasks that AI cannot perform.
- ADK Primitives Used (Conceptual):
- Interaction: Can be implemented using a custom Tool that pauses execution and sends a request to an external system (e.g., a UI, ticketing system) waiting for human input. The tool then returns the human's response to the agent.
- Workflow: Could use LLM-Driven Delegation (
transfer_to_agent
) targeting a conceptual "Human Agent" that triggers the external workflow, or use the custom tool within anLlmAgent
. - State/Callbacks: State can hold task details for the human; callbacks can manage the interaction flow.
- Note: ADK doesn't have a built-in "Human Agent" type, so this requires custom integration.
# Conceptual Code: Using a Tool for Human Approval
from google.adk.agents import LlmAgent, SequentialAgent
from google.adk.tools import FunctionTool
# --- Assume external_approval_tool exists ---
# This tool would:
# 1. Take details (e.g., request_id, amount, reason).
# 2. Send these details to a human review system (e.g., via API).
# 3. Poll or wait for the human response (approved/rejected).
# 4. Return the human's decision.
# async def external_approval_tool(amount: float, reason: str) -> str: ...
approval_tool = FunctionTool(func=external_approval_tool)
# Agent that prepares the request
prepare_request = LlmAgent(
name="PrepareApproval",
instruction="Prepare the approval request details based on user input. Store amount and reason in state.",
# ... likely sets state['approval_amount'] and state['approval_reason'] ...
)
# Agent that calls the human approval tool
request_approval = LlmAgent(
name="RequestHumanApproval",
instruction="Use the external_approval_tool with amount from state['approval_amount'] and reason from state['approval_reason'].",
tools=[approval_tool],
output_key="human_decision"
)
# Agent that proceeds based on human decision
process_decision = LlmAgent(
name="ProcessDecision",
instruction="Check state key 'human_decision'. If 'approved', proceed. If 'rejected', inform user."
)
approval_workflow = SequentialAgent(
name="HumanApprovalWorkflow",
sub_agents=[prepare_request, request_approval, process_decision]
)
These patterns provide starting points for structuring your multi-agent systems. You can mix and match them as needed to create the most effective architecture for your specific application.