From 19d161aec314209673be658bfd476b36f5c0d5f4 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 3 Jul 2023 22:09:02 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(config.yaml):=20add=20docum?= =?UTF-8?q?entation=20links=20for=20new=20modules=20and=20update=20existin?= =?UTF-8?q?g=20links=20=F0=9F=94=96=20chore(config.yaml):=20update=20docum?= =?UTF-8?q?entation=20links=20for=20vectorstores=20and=20output=20parsers?= =?UTF-8?q?=20Added=20documentation=20links=20for=20the=20following=20new?= =?UTF-8?q?=20modules:=20-=20MongoDBChatMessageHistory=20-=20ChatMessagePr?= =?UTF-8?q?omptTemplate=20-=20HumanMessagePromptTemplate=20-=20SystemMessa?= =?UTF-8?q?gePromptTemplate=20-=20ChatPromptTemplate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated documentation links for the following existing modules: - MongoDBAtlasVectorSearch Also, added documentation links for the following output parsers: - StructuredOutputParser - ResponseSchema The documentation links were added or updated to provide easy access to relevant documentation for each module and output parser. --- src/backend/langflow/config.yaml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/backend/langflow/config.yaml b/src/backend/langflow/config.yaml index 3745b9e22..d179ee182 100644 --- a/src/backend/langflow/config.yaml +++ b/src/backend/langflow/config.yaml @@ -151,7 +151,16 @@ memories: documentation: "https://python.langchain.com/docs/modules/memory/how_to/buffer_window" VectorStoreRetrieverMemory: documentation: "https://python.langchain.com/docs/modules/memory/how_to/vectorstore_retriever_memory" - + MongoDBChatMessageHistory: + documentation: "https://python.langchain.com/docs/modules/memory/integrations/mongodb_chat_message_history" + ChatMessagePromptTemplate: + documentation: "https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/msg_prompt_templates" + HumanMessagePromptTemplate: + documentation: "https://python.langchain.com/docs/modules/model_io/models/chat/how_to/prompts" + SystemMessagePromptTemplate: + documentation: "https://python.langchain.com/docs/modules/model_io/models/chat/how_to/prompts" + ChatPromptTemplate: + documentation: "https://python.langchain.com/docs/modules/model_io/models/chat/how_to/prompts" prompts: PromptTemplate: documentation: "https://python.langchain.com/docs/modules/model_io/prompts/prompt_templates/" @@ -269,7 +278,12 @@ vectorstores: SupabaseVectorStore: 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_vector_search" + documentation: "https://python.langchain.com/docs/modules/data_connection/vectorstores/integrations/mongodb_atlas" wrappers: RequestsWrapper: documentation: "" +output_parsers: + StructuredOutputParser: + documentation: "https://python.langchain.com/docs/modules/model_io/output_parsers/structured" + ResponseSchema: + documentation: "https://python.langchain.com/docs/modules/model_io/output_parsers/structured"