Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ from HuggingFace as follows:

```bash
mkdir ./embeddings_model
pdm run python ./scripts/download_embeddings_model.py -l ./embeddings_model/ -r sentence-transformers/all-mpnet-base-v2
uv run python ./scripts/download_embeddings_model.py -l ./embeddings_model/ -r sentence-transformers/all-mpnet-base-v2
```

2. Prepare dummy documentation:
Expand Down Expand Up @@ -214,7 +214,7 @@ The process is basically the same as in the
([Generating the Vector Database](#generating-the-vector-database)):

```bash
pdm run ./custom_processor.py \
uv run ./custom_processor.py \
-o ./vector_db/custom_docs/0.1 \
-f ./custom_docs/0.1/ \
-md embeddings_model/ \
Expand Down Expand Up @@ -262,7 +262,7 @@ The process is the same as in the
([Generating the Vector Database](#generating-the-vector-database)):

```bash
pdm run ./custom_processor.py \
uv run ./custom_processor.py \
-o ./vector_db/custom_docs/0.1 \
-f ./custom_docs/0.1/ \
-md embeddings_model/ \
Expand Down
Loading