From 4a0324bc7f3e9dfaab3b3c684c28ef806a2fc77d Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 11 Jul 2023 07:20:20 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20chore(config.yaml):=20comment=20?= =?UTF-8?q?out=20DocArrayInMemorySearch=20vectorstore=20integration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ℹ️ The DocArrayInMemorySearch vectorstore integration is currently not supported due to compatibility issues with the required version of docarray. Commenting it out to prevent potential errors. --- src/backend/langflow/config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/backend/langflow/config.yaml b/src/backend/langflow/config.yaml index f4f83301a..3116e74c7 100644 --- a/src/backend/langflow/config.yaml +++ b/src/backend/langflow/config.yaml @@ -277,6 +277,9 @@ vectorstores: documentation: "https://python.langchain.com/docs/modules/data_connection/vectorstores/integrations/supabase" MongoDBAtlasVectorSearch: documentation: "https://python.langchain.com/docs/modules/data_connection/vectorstores/integrations/mongodb_atlas" + # Requires docarray >=0.32.0 but langchain-serve requires jina 3.15.2 which doesn't support docarray >=0.32.0 + # DocArrayInMemorySearch: + # documentation: "https://python.langchain.com/docs/modules/data_connection/vectorstores/integrations/docarray_in_memory" wrappers: RequestsWrapper: documentation: ""