Skip to content

Commit c98f1ba

Browse files
authored
Update setup and instructions for Qdrant example (#251)
* Update README * Add warning
1 parent 839be27 commit c98f1ba

File tree

4 files changed

+641
-12
lines changed

4 files changed

+641
-12
lines changed

examples/customize/retrievers/external/qdrant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ docker compose -f tests/e2e/docker-compose.yml up
1111
Run this from the project root to write data to both Neo4J and Qdrant.
1212

1313
```bash
14-
poetry run python -m tests/e2e/qdrant_e2e/populate_dbs.py
14+
poetry run python -m examples.customize.retrievers.external.qdrant.populate_dbs
1515
```
1616

1717
### Install Qdrant client
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "3.9"
2+
services:
3+
neo4j:
4+
image: neo4j:5.24-enterprise
5+
ports:
6+
- 7687:7687
7+
- 7474:7474
8+
environment:
9+
NEO4J_AUTH: neo4j/password
10+
NEO4J_ACCEPT_LICENSE_AGREEMENT: "eval"
11+
NEO4J_PLUGINS: "[\"apoc\"]"
12+
13+
qdrant:
14+
image: qdrant/qdrant
15+
ports:
16+
- 6333:6333

0 commit comments

Comments
 (0)