Fix handoff workflow context management and improve AG-UI demo (#5136)

This commit is contained in:
Evan Mattson
2026-04-08 04:08:24 +00:00
committed by GitHub
parent f94a75daa5
commit e10d448ae2
19 changed files with 601 additions and 252 deletions
@@ -53,6 +53,7 @@ def create_agents(
"Assign the two tasks to the appropriate specialists, one after the other."
),
name="coordinator",
require_per_service_call_history_persistence=True,
)
research_agent = Agent(
@@ -66,6 +67,7 @@ def create_agents(
"coordinator. Keep each individual response focused on one aspect."
),
name="research_agent",
require_per_service_call_history_persistence=True,
)
summary_agent = Agent(
@@ -75,6 +77,7 @@ def create_agents(
"control to the coordinator."
),
name="summary_agent",
require_per_service_call_history_persistence=True,
)
return coordinator, research_agent, summary_agent