Skip to content

Commit 9b3dabc

Browse files
Corrected wrong order of commands (meta-llama#602)
1 parent 55037e4 commit 9b3dabc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes/quickstart/Getting_to_know_Llama.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,8 +1013,8 @@
10131013
"source": [
10141014
"# This time your previous question and answer will be included as a chat history which will enable the ability\n",
10151015
"# to ask follow up questions.\n",
1016-
"chat_history = [(query, result[\"answer\"])]\n",
10171016
"query = \"What two sizes?\"\n",
1017+
"chat_history = [(query, result[\"answer\"])]\n",
10181018
"result = chain({\"question\": query, \"chat_history\": chat_history})\n",
10191019
"md(result['answer'])"
10201020
]

0 commit comments

Comments
 (0)