Skip to content

Milvus

Milvus is an open-source vector database that has garnered significant attention in the fields of data science and machine learning.

Categories: artificial-intelligence

Type: milvus/v1


Connections

Version: 1

custom

Properties

NameLabelTypeDescriptionRequired
hostHostSTRINGThe name or address of the host.true
portPortSTRINGThe connection port.true
uriUriSTRINGThe uri of Milvus instance.true
usernameUsernameSTRINGThe username for this connection.true
passwordPasswordSTRINGThe password for this connection.true
collectionCollection NameSTRINGMilvus collection name to use.true
databaseDatabase NameSTRINGThe name of the Milvus database to use.true
initializeSchemaInitialize SchemaBOOLEAN
Options true, false
Whether to initialize the schema.true

Actions

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" : "milvus/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.

Load Data

Name: load

Loads data into the vector store using LLM embeddings.

Example JSON Structure

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

Output

This action does not produce any output.