Client library for the Qdrant vector search engine
pip install qdrant-client<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/qdrant/qdrant/raw/master/docs/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://github.com/qdrant/qdrant/raw/master/docs/logo-light.svg">
</picture>
</p>
<p align="center">
<b>Python Client library for the <a href="https://github.com/qdrant/qdrant">Qdrant</a> vector search engine.</b>
</p>
<p align=center>
<a href="https://pypi.org/project/qdrant-client/"></a>
<a href="https://api.qdrant.tech/"></a>
<a href="https://github.com/qdrant/qdrant-client/blob/master/LICENSE"></a>
<a href="https://qdrant.to/discord"></a>
<a href="https://qdrant.to/roadmap"></a>
</p>
Client library and SDK for the Qdrant vector search engine.
Library contains type definitions for all Qdrant API and allows to make both Sync and Async requests.
Client allows calls for all Qdrant API methods directly.
It also provides some additional helper methods for frequently required operations, e.g. initial collection uploading.
See QuickStart for more details!
pip install qdrant-client
<p align="center">
<!--- https://github.com/qdrant/qdrant-client/raw/master -->
</p>
Python client allows you to run same code in local mode without running Qdrant server.
Simply initialize client like this:
from qdrant_client import QdrantClientclient = QdrantClient(":memory:")
or
client = QdrantClient(path="path/to/db") # Persists changes to disk
Local mode is useful for development, prototyping and testing.
To connect to Qdrant server, simply specify host and port:
```
... [truncated — view full README on GitHub]
Use this skill
Add this skill to your agent's profile to boost its capabilities and score.
Add to My Agent