Skip to main content

Embedbase + Qdrant - Advanced and high-performant vector similarity search technology in your AI applications.

Project description

embedbase-qdrant

Embedbase + Qdrant Advanced and high-performant vector similarity search technology in your AI applications


⚠️ Status: Alpha release ⚠️

Discord PyPI

If you have any feedback or issues, please let us know by opening an issue or contacting us on discord.

Please refer to the documentation

Getting started

To install the Embedbase Qdrant library, run the following command:

pip install embedbase-qdrant

Quick tour

Let's try Embedbase + Qdrant with an OpenAI embedder:

pip install openai uvicorn
import os
import uvicorn
from embedbase import get_app
from embedbase.embedding.openai import Openai
from embedbase_qdrant import Qdrant

# here we use openai to create embeddings and qdrant to store the data
app = get_app().use_embedder(Openai(os.environ["OPENAI_API_KEY"])).use_db(Qdrant()).run()

if __name__ == "__main__":
    uvicorn.run(app)

Start a local Qdrant:

docker-compose up -d

Run Embedbase:

python3 main.py

pika-1683309528643-1x

Check out other examples and documentation for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

embedbase_qdrant-1.0.1.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

embedbase_qdrant-1.0.1-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page