Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 646 Bytes

File metadata and controls

31 lines (21 loc) · 646 Bytes

Start services locally

Run the following command to spin up Neo4j and Qdrant containers.

docker compose -f tests/e2e/docker-compose.yml up

Write data (once)

Run this from the project root to write data to both Neo4J and Qdrant.

poetry run python -m tests/e2e/qdrant_e2e/populate_dbs.py

Install Qdrant client

pip install qdrant-client

Search

# search by vector
poetry run python -m examples.customize.retrievers.external.qdrant.vector_search

# search by text, with embeddings generated locally
poetry run python -m examples.customize.retrievers.external.qdrant.text_search