diff --git a/README.md b/README.md index 0bb31c9..de53fff 100644 --- a/README.md +++ b/README.md @@ -95,9 +95,9 @@ docker run -it --network health-rec_app-network -v :/d Then we can run the following commands to upload the data to the vector database: ```bash -python3 health_rec/manage_data.py --create -OPENAI_API_KEY=$YOUR_OPENAI_API_KEY python3 health_rec/manage_data.py --load --data-dir /data --load-embeddings -python3 health_rec/manage_data.py --list +python3 health_rec/manage_data.py create --name +OPENAI_API_KEY=$YOUR_OPENAI_API_KEY python3 health_rec/manage_data.py load --name --data-dir /data --load-embeddings +python3 health_rec/manage_data.py list ``` Careful while loading embeddings, it uses the OpenAI API, and hence make sure the data you want to use is correct. Test with a small amount of data first.