Update benchmarks all notebook to use {question} instead of {input} (#179)

Update benchmarks all prompt
This commit is contained in:
Eugene Yurtsev
2024-04-18 11:28:21 -04:00
committed by GitHub
parent 32a532f269
commit 381ada5cbe
@@ -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",
")"