Skip to content

Commit

Permalink
Update setup and instructions for Qdrant example (#251)
Browse files Browse the repository at this point in the history
* Update README

* Add warning
  • Loading branch information
willtai authored Jan 21, 2025
1 parent 839be27 commit c98f1ba
Show file tree
Hide file tree
Showing 4 changed files with 641 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/customize/retrievers/external/qdrant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ docker compose -f tests/e2e/docker-compose.yml up
Run this from the project root to write data to both Neo4J and Qdrant.

```bash
poetry run python -m tests/e2e/qdrant_e2e/populate_dbs.py
poetry run python -m examples.customize.retrievers.external.qdrant.populate_dbs
```

### Install Qdrant client
Expand Down
16 changes: 16 additions & 0 deletions examples/customize/retrievers/external/qdrant/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: "3.9"
services:
neo4j:
image: neo4j:5.24-enterprise
ports:
- 7687:7687
- 7474:7474
environment:
NEO4J_AUTH: neo4j/password
NEO4J_ACCEPT_LICENSE_AGREEMENT: "eval"
NEO4J_PLUGINS: "[\"apoc\"]"

qdrant:
image: qdrant/qdrant
ports:
- 6333:6333
Loading

0 comments on commit c98f1ba

Please sign in to comment.