Skip to content
Merged
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
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- [Running on a Cluster](#running-on-a-cluster)
- [Makefile Commands](#makefile-commands)
- [Contributing](#contributing)
- [Troubleshooting](#troubleshooting)

## Image Availability

Expand Down Expand Up @@ -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.
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
```