> ## Documentation Index
> Fetch the complete documentation index at: https://langchain.idochub.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Milvus

> [Milvus](https://milvus.io/docs/overview.md) is a database that stores, indexes, and manages
> massive embedding vectors generated by deep neural networks and other machine learning (ML) models.

## Installation and Setup

Install the Python SDK:

<CodeGroup>
  ```bash pip theme={null}
  pip install langchain-milvus
  ```

  ```bash uv theme={null}
  uv add langchain-milvus
  ```
</CodeGroup>

## Vector Store

See a [usage example](/oss/python/integrations/vectorstores/milvus).

To import this vectorstore:

```python theme={null}
from langchain_milvus import Milvus
```
