From 846322751e6008b9f5f90fdd91cda4778f5bc26b Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Thu, 18 Apr 2024 11:17:44 -0400 Subject: [PATCH] x --- docs/source/notebooks/tool_usage/benchmark_all_tasks.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/notebooks/tool_usage/benchmark_all_tasks.ipynb b/docs/source/notebooks/tool_usage/benchmark_all_tasks.ipynb index 9b64746..5bfabd9 100644 --- a/docs/source/notebooks/tool_usage/benchmark_all_tasks.ipynb +++ b/docs/source/notebooks/tool_usage/benchmark_all_tasks.ipynb @@ -152,7 +152,7 @@ " [\n", " (\n", " \"human\",\n", - " \"{instructions}\\n{input}\",\n", + " \"{instructions}\\n{question}\",\n", " ), # Populated from task.instructions automatically\n", " MessagesPlaceholder(\"agent_scratchpad\"), # Workspace for the agent\n", " ]\n", @@ -161,7 +161,7 @@ "with_system_message_prompt = ChatPromptTemplate.from_messages(\n", " [\n", " (\"system\", \"{instructions}\"),\n", - " (\"human\", \"{input}\"), # Populated from task.instructions automatically\n", + " (\"human\", \"{question}\"), # Populated from task.instructions automatically\n", " MessagesPlaceholder(\"agent_scratchpad\"), # Workspace for the agent\n", " ]\n", ")"