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
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,17 @@ podman compose up --build
# Access llama-stack at http://localhost:8321
```

#### macOS (arm64)

Emulation of platform amd64 will not work with `podman compose up --build` command.

Instead run the docker command:

```bash
# Start both services
docker compose up --build
```

### Llama-Stack as Library (Library Mode)

When embedding llama-stack directly in the container, use the existing `Containerfile` directly (this will not build the llama stack service in a separate container). First modify the `lightspeed-stack.yaml` config to use llama stack in library mode.
Expand All @@ -620,7 +631,7 @@ podman run \
my-lightspeed-core:latest
```

For macosx users:
#### macOS
```bash
podman run \
-p 8080:8080 \
Expand Down
Loading