From 26ae9efab3c4dc20bd5208ae75222187951a4364 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 7 Feb 2024 20:29:57 -0300 Subject: [PATCH] Update ChromaComponent description and display name --- src/backend/langflow/components/vectorstores/ChromaSearch.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/backend/langflow/components/vectorstores/ChromaSearch.py b/src/backend/langflow/components/vectorstores/ChromaSearch.py index 6108d9a82..b8883bc55 100644 --- a/src/backend/langflow/components/vectorstores/ChromaSearch.py +++ b/src/backend/langflow/components/vectorstores/ChromaSearch.py @@ -11,9 +11,8 @@ class ChromaComponent(CustomComponent): A custom component for implementing a Vector Store using Chroma. """ - display_name: str = "Chroma" - description: str = "Implementation of Vector Store using Chroma" - documentation = "https://python.langchain.com/docs/integrations/vectorstores/chroma" + display_name: str = "Chroma Search" + description: str = "Search a Chroma collection for similar documents." beta: bool = True def build_config(self):