From ad3973a3b8369315a5e780b57594cebe2b64aed5 Mon Sep 17 00:00:00 2001 From: Nahin Khan Date: Sat, 15 Apr 2023 18:53:25 +0300 Subject: [PATCH] Fix typo (#2942) --- docs/modules/memory/examples/agent_with_memory_in_db.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/memory/examples/agent_with_memory_in_db.ipynb b/docs/modules/memory/examples/agent_with_memory_in_db.ipynb index 201a6533..b96760bb 100644 --- a/docs/modules/memory/examples/agent_with_memory_in_db.ipynb +++ b/docs/modules/memory/examples/agent_with_memory_in_db.ipynb @@ -16,7 +16,7 @@ "In order to add a memory with an external message store to an agent we are going to do the following steps:\n", "\n", "1. We are going to create a `RedisChatMessageHistory` to connect to an external database to store the messages in.\n", - "2. We are going to create an `LLMChain` useing that chat history as memory.\n", + "2. We are going to create an `LLMChain` using that chat history as memory.\n", "3. We are going to use that `LLMChain` to create a custom Agent.\n", "\n", "For the purposes of this exercise, we are going to create a simple custom Agent that has access to a search tool and utilizes the `ConversationBufferMemory` class."