Class PlannerAgent
java.lang.Object
com.google.adk.agents.BaseAgent
com.google.adk.agents.PlannerAgent
An agent that delegates execution planning to a
Planner strategy.
The PlannerAgent owns a set of sub-agents and a planner. At runtime, the planner
inspects session state and decides which sub-agent(s) to run next. This enables dynamic,
goal-oriented agent orchestration — the execution topology is determined at runtime rather than
being fixed at build time.
The planning loop:
- Planner is initialized with context and available agents
- Planner returns what to do next via
PlannerAction - Selected sub-agent(s) execute, producing events
- Session state (world state) is updated from events
- Planner sees updated state and decides the next action
- Repeat until
PlannerAction.Doneor maxIterations
Example usage with a custom planner:
PlannerAgent agent = PlannerAgent.builder()
.name("myAgent")
.subAgents(agentA, agentB, agentC)
.planner(new GoalOrientedPlanner("finalOutput", metadata))
.maxIterations(20)
.build();
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic PlannerAgent.Builderbuilder()Returns a newPlannerAgent.Builderfor creatingPlannerAgentinstances.intReturns the maximum number of planning iterations.planner()Returns the planner strategy used by this agent.protected io.reactivex.rxjava3.core.Flowable<Event> runAsyncImpl(InvocationContext invocationContext) Agent-specific asynchronous logic.protected io.reactivex.rxjava3.core.Flowable<Event> runLiveImpl(InvocationContext invocationContext) Agent-specific synchronous logic.Methods inherited from class BaseAgent
afterAgentCallback, beforeAgentCallback, canonicalAfterAgentCallbacks, canonicalBeforeAgentCallbacks, close, description, findAgent, findSubAgent, fromConfig, name, parentAgent, parentAgent, rootAgent, runAsync, runLive, subAgents, toolOriginModifier and TypeMethodDescriptioncom.google.common.collect.ImmutableList<? extends Callbacks.AfterAgentCallback> com.google.common.collect.ImmutableList<? extends Callbacks.BeforeAgentCallback> com.google.common.collect.ImmutableList<? extends Callbacks.AfterAgentCallback> The resolved afterAgentCallback field as a list.com.google.common.collect.ImmutableList<? extends Callbacks.BeforeAgentCallback> The resolved beforeAgentCallback field as a list.io.reactivex.rxjava3.core.Completableclose()Closes all sub-agents.final StringGets the one-line description of the agent's capability.Finds an agent (this or descendant) by name.findSubAgent(String name) Recursively search sub agent by name.static BaseAgentfromConfig(BaseAgentConfig config, String configAbsPath) Creates a new agent instance from a configuration object.final Stringname()Gets the agent's unique name.Retrieves the parent agent in the agent tree.protected voidparentAgent(BaseAgent parentAgent) Sets the parent agent.Returns the root agent for this agent by traversing up the parent chain.io.reactivex.rxjava3.core.Flowable<Event> runAsync(InvocationContext parentContext) Runs the agent asynchronously.io.reactivex.rxjava3.core.Flowable<Event> runLive(InvocationContext parentContext) Runs the agent synchronously.Returns the origin of the tool when this agent is used as a tool.
-
Method Details
-
planner
Returns the planner strategy used by this agent. -
maxIterations
public int maxIterations()Returns the maximum number of planning iterations. -
runAsyncImpl
protected io.reactivex.rxjava3.core.Flowable<Event> runAsyncImpl(InvocationContext invocationContext) Description copied from class:BaseAgentAgent-specific asynchronous logic.- Specified by:
runAsyncImplin classBaseAgent- Parameters:
invocationContext- Current invocation context.- Returns:
- stream of agent-generated events.
-
runLiveImpl
protected io.reactivex.rxjava3.core.Flowable<Event> runLiveImpl(InvocationContext invocationContext) Description copied from class:BaseAgentAgent-specific synchronous logic.- Specified by:
runLiveImplin classBaseAgent- Parameters:
invocationContext- Current invocation context.- Returns:
- stream of agent-generated events.
-
builder
Returns a newPlannerAgent.Builderfor creatingPlannerAgentinstances.
-