From 4f9466288101fb9017f72c55bc6138d173881979 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 29 Jun 2023 18:43:24 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(config.yaml):=20add=20docum?= =?UTF-8?q?entation=20for=20ConversationEntityMemory=20integration=20The?= =?UTF-8?q?=20ConversationEntityMemory=20integration=20is=20now=20document?= =?UTF-8?q?ed=20in=20the=20config.yaml=20file.=20This=20provides=20a=20lin?= =?UTF-8?q?k=20to=20the=20documentation=20for=20using=20the=20Conversation?= =?UTF-8?q?EntityMemory=20module=20with=20SQLite=20as=20the=20underlying?= =?UTF-8?q?=20storage.=20This=20change=20improves=20the=20clarity=20and=20?= =?UTF-8?q?accessibility=20of=20the=20documentation=20for=20this=20integra?= =?UTF-8?q?tion.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/config.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/backend/langflow/config.yaml b/src/backend/langflow/config.yaml index bc673947e..8d60876fa 100644 --- a/src/backend/langflow/config.yaml +++ b/src/backend/langflow/config.yaml @@ -123,6 +123,11 @@ memories: # https://github.com/supabase-community/supabase-py/issues/482 # ZepChatMessageHistory: # documentation: "https://python.langchain.com/docs/modules/memory/integrations/zep_memory" + ConversationEntityMemory: + documentation: "https://python.langchain.com/docs/modules/memory/integrations/entity_memory_with_sqlite" + # https://github.com/hwchase17/langchain/issues/6091 + # SQLiteEntityStore: + # documentation: "https://python.langchain.com/docs/modules/memory/integrations/entity_memory_with_sqlite" PostgresChatMessageHistory: documentation: "https://python.langchain.com/docs/modules/memory/integrations/postgres_chat_message_history" ConversationBufferMemory: