fix(vall-e-x): correctly install reqs in environment (#1377)

This commit is contained in:
Ettore Di Giacinto 2023-12-03 21:16:36 +01:00 committed by GitHub
parent 3d71bc9b64
commit 238fec244a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 26 additions and 7 deletions

View file

@ -354,3 +354,13 @@ docker run --env REBUILD=true localai
# Option 2: set within an env file
docker run --env-file .env localai
```
### Build only a single backend
You can control the backends that are built by setting the `GRPC_BACKENDS` environment variable. For instance, to build only the `llama-cpp` backend only:
```bash
make GRPC_BACKENDS=backend-assets/grpc/llama-cpp build
```
By default, all the backends are built.