diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoremilvus.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoremilvus.md index 31a3f27ea80..72b79708414 100644 --- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoremilvus.md +++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoremilvus.md @@ -88,6 +88,14 @@ The connections flow would look like this: AI agent (tools connector) -> Vector --8<-- "_snippets/integrations/builtin/cluster-nodes/langchain-root-nodes/vector-store-metadata-filter.md" +### Distance Strategy + +Available in **Get Many** and **Retrieve Documents** modes. Selects the method to calculate the distance between two vectors. The default is `L2`. + +### Index Type + +Available in **Get Many** and **Retrieve Documents** modes. Selects the type of index used in the Milvus database. The default is `AUTOINDEX`. + ### Clear Collection Available in **Insert Documents** mode. Deletes all data from the collection before inserting the new data. diff --git a/docs/integrations/builtin/credentials/milvus.md b/docs/integrations/builtin/credentials/milvus.md index f95243e5881..8687b690d07 100644 --- a/docs/integrations/builtin/credentials/milvus.md +++ b/docs/integrations/builtin/credentials/milvus.md @@ -32,3 +32,4 @@ To configure this credential, you'll need: * **Base URL**: The base URL of your Milvus instance. The default is `http://localhost:19530`. * **Username**: The username to authenticate to your Milvus instance. The default value is `root`. * **Password**: The password to authenticate to your Milvus instance. The default value is `Milvus`. +* **Database Name**: The name of the database to use. The default is `default`.