Update app.py
Browse files
app.py
CHANGED
|
@@ -559,7 +559,7 @@ def orchestrator_agent(state: ApplicationAgentState) -> Command[Literal["recruit
|
|
| 559 |
|
| 560 |
if state.phase == "PLAN":
|
| 561 |
agent_descriptions = "\n".join([
|
| 562 |
-
f"{agent.get(
|
| 563 |
for name, agent in state.available_agents.items()
|
| 564 |
])
|
| 565 |
|
|
|
|
| 559 |
|
| 560 |
if state.phase == "PLAN":
|
| 561 |
agent_descriptions = "\n".join([
|
| 562 |
+
f"{agent.get('title')}\nDescription: {agent.get('description')}"
|
| 563 |
for name, agent in state.available_agents.items()
|
| 564 |
])
|
| 565 |
|