mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
2443e85533
docs: fix milvus import problem update milvus-rag template with milvus-lite Signed-off-by: ChengZi <chen.zhang@zilliz.com>
42 lines
986 B
Markdown
42 lines
986 B
Markdown
# langchain-milvus
|
|
|
|
This is a library integration with [Milvus](https://milvus.io/) and [Zilliz Cloud](https://zilliz.com/cloud).
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
pip install -U langchain-milvus
|
|
```
|
|
|
|
## Milvus vector database
|
|
|
|
See a [usage example](https://python.langchain.com/v0.2/docs/integrations/vectorstores/milvus/)
|
|
|
|
```python
|
|
from langchain_milvus import Milvus
|
|
```
|
|
|
|
## Milvus hybrid search
|
|
|
|
See a [usage example](https://python.langchain.com/v0.2/docs/integrations/retrievers/milvus_hybrid_search/).
|
|
|
|
```python
|
|
from langchain_milvus import MilvusCollectionHybridSearchRetriever
|
|
```
|
|
|
|
|
|
## Zilliz Cloud vector database
|
|
|
|
See a [usage example](https://python.langchain.com/v0.2/docs/integrations/vectorstores/zilliz/).
|
|
|
|
```python
|
|
from langchain_milvus import Zilliz
|
|
```
|
|
|
|
## Zilliz Cloud Pipeline Retriever
|
|
|
|
See a [usage example](https://python.langchain.com/v0.2/docs/integrations/retrievers/zilliz_cloud_pipeline/).
|
|
|
|
```python
|
|
from langchain_milvus import ZillizCloudPipelineRetriever
|
|
``` |