Milvus
Milvus is a database that stores, indexes, and manages massive embedding vectors generated by deep neural networks and other machine learning (ML) models.
This notebook shows how to use functionality related to the Milvus vector database.
Setup
You'll need to install langchain-milvus
with pip install -qU langchain-milvus
to use this integration.
%pip install -qU langchain_milvus
The latest version of pymilvus comes with a local vector database Milvus Lite, good for prototyping. If you have large scale of data such as more than a million docs, we recommend setting up a more performant Milvus server on docker or kubernetes.
Credentials
No credentials are needed to use the Milvus
vector store.