fix typo in agent_lifecycle_example.py (#161)

This commit is contained in:
Rohan Mehta 2025-03-17 15:59:00 -04:00 committed by GitHub
commit d5fbf42a9d
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ multiply_agent = Agent(
start_agent = Agent(
name="Start Agent",
instructions="Generate a random number. If it's even, stop. If it's odd, hand off to the multipler agent.",
instructions="Generate a random number. If it's even, stop. If it's odd, hand off to the multiply agent.",
tools=[random_number],
output_type=FinalResult,
handoffs=[multiply_agent],