> ## Documentation Index
> Fetch the complete documentation index at: https://langchain-5e9cc07a-preview-update-1770920925-e15dbde.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Milvus integrations

> Integrate with Milvus using LangChain Python.

> [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
```

***

<Callout icon="pen-to-square" iconType="regular">
  [Edit this page on GitHub](https://github.com/langchain-ai/docs/edit/main/src/oss/python/integrations/providers/milvus.mdx) or [file an issue](https://github.com/langchain-ai/docs/issues/new/choose).
</Callout>

<Tip icon="terminal" iconType="regular">
  [Connect these docs](/use-these-docs) to Claude, VSCode, and more via MCP for real-time answers.
</Tip>
