Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/builtin/credentials/milvus.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.