8000 Update README.md (#185) · Jacksunwei/adk-python@26bab52 · GitHub
[go: up one dir, main page]

Skip to content

Commit 26bab52

Browse files
authored
Update README.md (google#185)
fixing bug: task_exectuor -> task_executor
1 parent 5772225 commit 26bab52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ from google.adk.agents import LlmAgent, BaseAgent
8080

8181
# Define individual agents
8282
greeter = LlmAgent(name="Greeter", model="gemini-2.0-flash")
83-
task_exectuor = CustomAgent(name="TaskExecutor") # A subclass of BaseAgent, as a Non-LLM agent.
83+
task_executor = CustomAgent(name="TaskExecutor") # A subclass of BaseAgent, as a Non-LLM agent.
8484

8585
# Create parent agent and assign children via sub_agents
8686
coordinator = LlmAgent(
@@ -89,7 +89,7 @@ coordinator = LlmAgent(
8989
description="I coordinate greetings and tasks.",
9090
sub_agents=[ # Assign sub_agents here
9191
greeter,
92-
task_exectuor
92+
task_executor
9393
]
9494
)
9595

0 commit comments

Comments
 (0)
0