Skip to content

Commit

Permalink
Add milvus vector store
Browse files Browse the repository at this point in the history
Signed-off-by: Jael Gu <[email protected]>
  • Loading branch information
jaelgu committed Jul 11, 2024
1 parent 81849d5 commit 563a08c
Show file tree
Hide file tree
Showing 4 changed files with 323 additions and 53 deletions.
27 changes: 27 additions & 0 deletions docs/docs/components/vector-stores.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
184 changes: 131 additions & 53 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ langchain-mongodb = "^0.1.6"
kubernetes = "^30.1.0"
firecrawl-py = "^0.0.16"
langchain-nvidia-ai-endpoints = "^0.1.2"
langchain-milvus = "^0.1.1"


[tool.poetry.group.dev.dependencies]
Expand Down
Loading

0 comments on commit 563a08c

Please sign in to comment.