File tree Expand file tree Collapse file tree 4 files changed +641
-12
lines changed
examples/customize/retrievers/external/qdrant Expand file tree Collapse file tree 4 files changed +641
-12
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ docker compose -f tests/e2e/docker-compose.yml up
11
11
Run this from the project root to write data to both Neo4J and Qdrant.
12
12
13
13
``` 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
15
15
```
16
16
17
17
### Install Qdrant client
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments