Add icon to QdrantComponent and QdrantSearchComponent
This commit is contained in:
parent
0dc45c3c50
commit
fa6ff41788
2 changed files with 3 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue