ADK: Rename the root agent in the example to match the example name.

This makes logs a bit less confusing.

PiperOrigin-RevId: 766312673
This commit is contained in:
Hangfei Lin 2025-06-02 13:09:58 -07:00 committed by Copybara-Service
parent 1db601c4bd
commit 94c0aca685

View File

@ -88,7 +88,7 @@ prime_agent = LlmAgent(
)
root_agent = SequentialAgent(
name="code_pipeline_agent",
name="simple_sequential_agent",
sub_agents=[roll_agent, prime_agent],
# The agents will run in the order provided: roll_agent -> prime_agent
)