feat: Add milvus vector store (#2634)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
844da96bd2
commit
c8d7f47070
4 changed files with 282 additions and 53 deletions
|
|
@ -167,6 +167,33 @@ For more details, see the [FAISS Component Documentation](https://faiss.ai/index
|
|||
|
||||
---
|
||||
|
||||
### Milvus
|
||||
|
||||
`Milvus` builds a vector store based on Milvus or Zilliz Cloud service to support document ingestion and search.
|
||||
|
||||
**Parameters:**
|
||||
|
||||
- **Input:** Documents or Data.
|
||||
- **Embedding:** Model used in Milvus vector store.
|
||||
- **Collection Name:** Collection identifier in Milvus.
|
||||
- **Connection URI:** URI used to connect Milvus or Zilliz Cloud service.
|
||||
|
||||
---
|
||||
|
||||
### Milvus Search
|
||||
|
||||
`MilvusSearch` searches a Milvus Vector Store for documents similar to the input, using advanced similarity metrics.
|
||||
|
||||
**Parameters:**
|
||||
|
||||
- **Input Value:** Search query.
|
||||
- **Connection URI:** URI used to connect Milvus or Zilliz Cloud service.
|
||||
- **Embedding:** Model used in Milvus vector store.
|
||||
- **Collection Name:** Collection identifier in Milvus.
|
||||
- **Number of Results:** Number of search results to return.
|
||||
|
||||
---
|
||||
|
||||
### MongoDB Atlas
|
||||
|
||||
`MongoDBAtlas` builds a MongoDB Atlas-based vector store from Data, streamlining the storage and retrieval of documents.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue