diff --git a/docs/docs/versions/migrating_memory/chat_history.ipynb b/docs/docs/versions/migrating_memory/chat_history.ipynb index 0e052fd0a32..1b0600a6214 100644 --- a/docs/docs/versions/migrating_memory/chat_history.ipynb +++ b/docs/docs/versions/migrating_memory/chat_history.ipynb @@ -163,7 +163,7 @@ " ai_message = model.invoke(messages)\n", " # Finally, update the chat message history to include\n", " # the new input message from the user together with the\n", - " # repsonse from the model.\n", + " # response from the model.\n", " # highlight-next-line\n", " chat_history.add_messages(state[\"messages\"] + [ai_message])\n", " return {\"messages\": ai_message}\n", @@ -254,7 +254,7 @@ " ai_message = model.invoke(messages)\n", " # Finally, update the chat message history to include\n", " # the new input message from the user together with the\n", - " # repsonse from the model.\n", + " # response from the model.\n", " chat_history.add_messages(state[\"messages\"] + [ai_message])\n", " # hilight-end\n", " return {\"messages\": ai_message}\n",