mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
f4e6eac3b6
The `self-que[ring` navbar](https://python.langchain.com/docs/modules/data_connection/retrievers/self_query/) has repeated `self-quering` repeated in each menu item. I've simplified it to be more readable - removed `self-quering` from a title of each page; - added description to the vector stores - added description and link to the Integration Card (`integrations/providers`) of the vector stores when they are missed.
26 lines
658 B
Plaintext
26 lines
658 B
Plaintext
# 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:
|
|
|
|
```bash
|
|
pip install pymilvus
|
|
```
|
|
|
|
## Vector Store
|
|
|
|
There exists a wrapper around `Milvus` indexes, allowing you to use it as a vectorstore,
|
|
whether for semantic search or example selection.
|
|
|
|
To import this vectorstore:
|
|
```python
|
|
from langchain.vectorstores import Milvus
|
|
```
|
|
|
|
For a more detailed walkthrough of the `Miluvs` wrapper, see [this notebook](/docs/integrations/vectorstores/milvus.html)
|