Skip to content

Qdrant

Qdrant is an open-source vector similarity search engine designed to handle high-dimensional data, enabling efficient and scalable nearest neighbor search for applications like recommendation systems and machine learning.

Categories: artificial-intelligence

Type: qdrant/v1


Connections

Version: 1

custom

Properties

NameLabelTypeDescriptionRequired
hostHostSTRINGThe host of the Qdrant server.true
portPortINTEGERThe gRPC port of the Qdrant server.true
apiKeyAPI KeySTRINGThe API key to use for authentication withe the server.true
collectionCollection NameSTRINGThe name of the collection to use.true
initializeSchemaInitialize SchemaBOOLEAN
Options true, false
Whether to initialize the schema.true

Actions

Load Data

Name: load

Loads data into the vector store using LLM embeddings.

Example JSON Structure

{
"label" : "Load Data",
"name" : "load",
"type" : "qdrant/v1/load"
}

Output

This action does not produce any output.

Search Data

Name: search

Query data from the vector store using LLM embeddings.

Properties

NameLabelTypeDescriptionRequired
queryQuerySTRINGThe query to be executed.true

Example JSON Structure

{
"label" : "Search Data",
"name" : "search",
"parameters" : {
"query" : ""
},
"type" : "qdrant/v1/search"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.