File size: 986 Bytes
ed4d993
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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
```