Add icon to QdrantComponent and QdrantSearchComponent

This commit is contained in:
anovazzi1 2024-02-28 17:55:20 -03:00
commit fa6ff41788
2 changed files with 3 additions and 0 deletions

View file

@ -10,6 +10,7 @@ from langflow.field_typing import Document, Embeddings, NestedDict
class QdrantComponent(CustomComponent):
display_name = "Qdrant"
description = "Construct Qdrant wrapper from a list of texts."
icon="Qdrant"
def build_config(self):
return {

View file

@ -9,6 +9,8 @@ from langflow.schema import Record
class QdrantSearchComponent(QdrantComponent, LCVectorStoreComponent):
display_name = "Qdrant"
description = "Construct Qdrant wrapper from a list of texts."
icon="Qdrant"
def build_config(self):
return {