From 811806c50716f953ed4f4ec48831063fdeb99324 Mon Sep 17 00:00:00 2001 From: Rodolfo Olivieri Date: Thu, 11 Sep 2025 08:21:40 -0300 Subject: [PATCH] Replace pdm to uv in README It seems that a couple of references to `pdm` were still present in the README, which I believe is a leftover, since the project is using `uv`. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e8ec710..cea3f9f 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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/ \ @@ -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/ \