Closed as not planned
Description
Question
I want to output which agent is used for reponse, but it seems not working.
It seems triage_agent is not delegate task to any handoff agent, he output the response by himself.
Code
class HomeworkOutput(BaseModel):
is_homework: bool
reasoning: str
guardrail_agent = Agent(
name="Guardrail check",
instructions="Check if the user is asking about homework.",
output_type=HomeworkOutput,
)
math_tutor_agent = Agent(
name="Math Tutor",
handoff_description="Specialist agent for math questions",
instructions="You provide help with math problems. Explain your reasoning at each step and include examples",
)
history_tutor_agent = Agent(
name="History Tutor",
handoff_description="Specialist agent for historical questions",
instructions="You provide assistance with historical queries. Explain important events and context clearly.",
)
def on_handoff(ctx: RunContextWrapper):
print("Math handoff triggered")
math_handoff = handoff(
agent=math_tutor_agent,
on_handoff=on_handoff,
)
triage_agent = Agent(
name="Triage Agent",
instructions="You determine which agent to use based on the user's homework question",
handoffs=[history_tutor_agent, math_handoff],
)
async def main():
result = await Runner.run(triage_agent, "who was the first president of the united states?")
print(result.final_output)
if __name__ == "__main__":
asyncio.run(main())