From c4b108b70e20db83c3e1bc37b312a6c2267d6204 Mon Sep 17 00:00:00 2001 From: gideon Date: Sun, 10 Nov 2024 18:23:55 +0530 Subject: [PATCH] removed the grammar mistake in 03_multi_agent.ipynb notebook DEFAULT_ORCHESTRATOR_PROMPT --- video_tutorial_materials/03_multi_agent.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/video_tutorial_materials/03_multi_agent.ipynb b/video_tutorial_materials/03_multi_agent.ipynb index 97ff843..92577d2 100644 --- a/video_tutorial_materials/03_multi_agent.ipynb +++ b/video_tutorial_materials/03_multi_agent.ipynb @@ -216,10 +216,10 @@ "\n", "\n", "DEFAULT_ORCHESTRATOR_PROMPT = (\n", - " \"You are on orchestration agent.\\n\"\n", + " \"You are the orchestration agent.\\n\"\n", " \"Your job is to decide which agent to run based on the current state of the user and what they've asked to do.\\n\"\n", " \"You do not need to figure out dependencies between agents; the agents will handle that themselves.\\n\"\n", - " \"Here the the agents you can choose from:\\n{agent_context_str}\\n\\n\"\n", + " \"Here are the agents you can choose from:\\n{agent_context_str}\\n\\n\"\n", " \"Here is the current user state:\\n{user_state_str}\\n\\n\"\n", " \"Please assist the user and transfer them as needed.\"\n", ")\n",