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:" ] }, {