Skip to content

Commit 0d920d0

Browse files
committed
Update README for external retrievers
1 parent dff160b commit 0d920d0

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ You will need both a Pinecone vector database and a Neo4j database to use this r
77
Update `NEO4J_AUTH`, `NEO4J_URL`, and `PC_API_KEY` variables in the `tests/e2e/pinecone_e2e/populate_dbs.py` script then run this from the project root to write test data to both dbs.
88

99
```
10-
poetry run python tests/e2e/pinecone_e2e/populate_dbs.py
10+
poetry run python -m tests/e2e/pinecone_e2e/populate_dbs.py
1111
```
1212

1313
### Install Pinecone client
@@ -23,8 +23,8 @@ Update the `NEO4J_AUTH`, `NEO4J_URL`, and `PC_API_KEY` variables in each file th
2323

2424
```
2525
# Search by vector
26-
poetry run python -m examples.pinecone.vector_search
26+
poetry run python -m examples.customize.retrievers.external.pinecone.vector_search
2727
2828
# Search by text, with embeddings generated locally
29-
poetry run python -m examples.pinecone.text_search
29+
poetry run python -m examples.customize.retrievers.external.pinecone.text_search
3030
```

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

+3-3
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 tests/e2e/qdrant_e2e/populate_dbs.py
14+
poetry run python -m tests/e2e/qdrant_e2e/populate_dbs.py
1515
```
1616

1717
### Install Qdrant client
@@ -24,8 +24,8 @@ pip install qdrant-client
2424

2525
```bash
2626
# search by vector
27-
poetry run python -m examples.qdrant.vector_search
27+
poetry run python -m examples.customize.retrievers.external.qdrant.vector_search
2828

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

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ docker compose -f tests/e2e/docker-compose.yml up
1313
Run this from the project root to write data to both dbs.
1414

1515
```
16-
poetry run python tests/e2e/weaviate_e2e/populate_dbs.py
16+
poetry run python -m tests/e2e/weaviate_e2e/populate_dbs.py
1717
```
1818

1919
### Install Weaviate client
@@ -28,11 +28,11 @@ pip install weaviate-client
2828

2929
```
3030
# search by vector
31-
poetry run python -m examples.weaviate.vector_search
31+
poetry run python -m examples.customize.retrievers.external.weaviate.vector_search
3232
3333
# search by text, with embeddings generated locally (via embedder argument)
34-
poetry run python -m examples.weaviate.text_search_local_embedder
34+
poetry run python -m examples.customize.retrievers.external.weaviate.text_search_local_embedder
3535
3636
# search by text, with embeddings generated on the Weaviate side, via configured vectorizer
37-
poetry run python -m examples.weaviate.text_search_remote_embedder
37+
poetry run python -m examples.customize.retrievers.external.weaviate.text_search_remote_embedder
3838
```

0 commit comments

Comments
 (0)