8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5772225 commit 26bab52Copy full SHA for 26bab52
README.md
@@ -80,7 +80,7 @@ from google.adk.agents import LlmAgent, BaseAgent
80
81
# Define individual agents
82
greeter = LlmAgent(name="Greeter", model="gemini-2.0-flash")
83
-task_exectuor = CustomAgent(name="TaskExecutor") # A subclass of BaseAgent, as a Non-LLM agent.
+task_executor = CustomAgent(name="TaskExecutor") # A subclass of BaseAgent, as a Non-LLM agent.
84
85
# Create parent agent and assign children via sub_agents
86
coordinator = LlmAgent(
@@ -89,7 +89,7 @@ coordinator = LlmAgent(
89
description="I coordinate greetings and tasks.",
90
sub_agents=[ # Assign sub_agents here
91
greeter,
92
- task_exectuor
+ task_executor
93
]
94
)
95
0 commit comments