2023-03-21 05:06:40 +00:00
|
|
|
# Qdrant
|
|
|
|
|
2023-09-13 21:43:04 +00:00
|
|
|
>[Qdrant](https://qdrant.tech/documentation/) (read: quadrant) is a vector similarity search engine.
|
|
|
|
> It provides a production-ready service with a convenient API to store, search, and manage
|
|
|
|
> points - vectors with an additional payload. `Qdrant` is tailored to extended filtering support.
|
|
|
|
|
2023-03-21 05:06:40 +00:00
|
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
|
2023-09-13 21:43:04 +00:00
|
|
|
Install the Python SDK:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pip install qdrant-client
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Vector Store
|
2023-03-21 05:06:40 +00:00
|
|
|
|
2023-09-13 21:43:04 +00:00
|
|
|
There exists a wrapper around `Qdrant` indexes, allowing you to use it as a vectorstore,
|
2023-03-21 05:06:40 +00:00
|
|
|
whether for semantic search or example selection.
|
|
|
|
|
|
|
|
To import this vectorstore:
|
|
|
|
```python
|
|
|
|
from langchain.vectorstores import Qdrant
|
|
|
|
```
|
|
|
|
|
2023-07-25 04:20:32 +00:00
|
|
|
For a more detailed walkthrough of the Qdrant wrapper, see [this notebook](/docs/integrations/vectorstores/qdrant.html)
|