From 7ee4483323a63400da13ef8c53afbc90a0457f2b Mon Sep 17 00:00:00 2001 From: Jordan Dubrick Date: Mon, 1 Dec 2025 14:12:14 -0500 Subject: [PATCH] add troubleshooting section Signed-off-by: Jordan Dubrick --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ba2e18..95c7deb 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ - [Running on a Cluster](#running-on-a-cluster) - [Makefile Commands](#makefile-commands) - [Contributing](#contributing) +- [Troubleshooting](#troubleshooting) ## Image Availability @@ -166,4 +167,18 @@ yarn format # Runs Prettier to update the YAMl files in this repository yarn verify # Runs Prettier to check the YAML files in this repository ``` -If you wish to try new changes with Llama Stack, you can build your own image using the `Containerfile` in the root of this repository. \ No newline at end of file +If you wish to try new changes with Llama Stack, you can build your own image using the `Containerfile` in the root of this repository. + +## Troubleshooting + +If you experience an error related to permissions for the `vector_db`, such as: + +```sh +sqlite3.OperationalError: attempt to write a readonly database +``` + +You should give the `vector_db` directory write permissions by: + +``` +chmod -R 777 vector_db +``` \ No newline at end of file