forked from langchain-ai/langchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs:
self-query
consistency (langchain-ai#10502)
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.
- Loading branch information
Showing
18 changed files
with
332 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
# Milvus | ||
|
||
This page covers how to use the Milvus ecosystem within LangChain. | ||
It is broken into two parts: installation and setup, and then references to specific Milvus wrappers. | ||
>[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 with `pip install pymilvus` | ||
## Wrappers | ||
|
||
### VectorStore | ||
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, | ||
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) | ||
For a more detailed walkthrough of the `Miluvs` wrapper, see [this notebook](/docs/integrations/vectorstores/milvus.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.