Skip to content

Commit

Permalink
Update benchmarks all notebook to use {question} instead of {input} (#…
Browse files Browse the repository at this point in the history
…179)

Update benchmarks all prompt
  • Loading branch information
eyurtsev committed Apr 18, 2024
1 parent 32a532f commit 381ada5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/notebooks/tool_usage/benchmark_all_tasks.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
")"
Expand Down

0 comments on commit 381ada5

Please sign in to comment.