From edfc103999e1051f5446e29d6afbe532d6ea4bea Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Sun, 28 May 2023 17:53:49 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20feat(config.yaml):=20add=20Coher?= =?UTF-8?q?eEmbeddings=20to=20the=20list=20of=20supported=20embeddings=20T?= =?UTF-8?q?he=20CohereEmbeddings=20is=20added=20to=20the=20list=20of=20sup?= =?UTF-8?q?ported=20embeddings=20in=20the=20config.yaml=20file.=20This=20a?= =?UTF-8?q?llows=20the=20application=20to=20use=20the=20CohereEmbeddings?= =?UTF-8?q?=20for=20language=20processing=20tasks.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- poetry.lock | 2 +- src/backend/langflow/config.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 9cf4c8e16..ab566e063 100644 --- a/poetry.lock +++ b/poetry.lock @@ -6149,4 +6149,4 @@ deploy = ["langchain-serve"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<3.12" -content-hash = "e27db1a183064e9181241ce688ee70a4fee4b5df7d3ebf4b6c13eae8fffe4dcc" +content-hash = "ae4852378416319ee45512e200759438615dc8a4e840369176234dd04ec2a3ec" diff --git a/src/backend/langflow/config.yaml b/src/backend/langflow/config.yaml index b6c506d52..92a922526 100644 --- a/src/backend/langflow/config.yaml +++ b/src/backend/langflow/config.yaml @@ -45,6 +45,7 @@ documentloaders: embeddings: - OpenAIEmbeddings - HuggingFaceEmbeddings + - CohereEmbeddings llms: - OpenAI