From 02de346f6dd60945879b2d4fa6aad79b19d277d1 Mon Sep 17 00:00:00 2001 From: Zapiron <125368863+DangerousPotential@users.noreply.github.com> Date: Wed, 13 Nov 2024 23:15:39 +0800 Subject: [PATCH] docs: Fixed additional 'the' and remove 'turns' to make explanation clearer (#28082) Fixed additional 'the' and remove the word 'turns' as it would make explanation clearer --------- Co-authored-by: ccurme --- docs/docs/how_to/chatbots_memory.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/how_to/chatbots_memory.ipynb b/docs/docs/how_to/chatbots_memory.ipynb index aa6e7002ca..011609a4a5 100644 --- a/docs/docs/how_to/chatbots_memory.ipynb +++ b/docs/docs/how_to/chatbots_memory.ipynb @@ -15,7 +15,7 @@ "source": [ "# How to add memory to chatbots\n", "\n", - "A key feature of chatbots is their ability to use content of previous conversation turns as context. This state management can take several forms, including:\n", + "A key feature of chatbots is their ability to use the content of previous conversational turns as context. This state management can take several forms, including:\n", "\n", "- Simply stuffing previous messages into a chat model prompt.\n", "- The above, but trimming old messages to reduce the amount of distracting information the model has to deal with.\n", @@ -185,7 +185,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - " We'll pass the latest input to the conversation here and let the LangGraph keep track of the conversation history using the checkpointer:" + " We'll pass the latest input to the conversation here and let LangGraph keep track of the conversation history using the checkpointer:" ] }, {