You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- A running X server (the O3DE simulation and HMI open windows on your display).
11
-
-~60 GB free disk for the image, plus room under `models/` for the weights.
11
+
-**Disk & network**: ~60 GB free for the image (the prebuilt image is a ~18 GB compressed pull), plus ~20 GB under `models/` for the weights. On a slow connection the first pull + model download takes a while.
12
12
13
13
## 1. Clone the repository
14
14
@@ -114,6 +114,22 @@ Before running a GPU-only image, edit `docker/compose.yaml` to:
114
114
- remove the `/dev/accel/accel0` device and the `memlock` ulimit (NPU-only), and
115
115
- point `config.toml`'s `vlm_safety` endpoint at a `gpu` backend — otherwise `pixi run inference` aborts on the missing NPU engine.
116
116
117
+
## Cloud models
118
+
119
+
To run the agents on OpenAI-hosted models instead of local inference, swap in the
120
+
cloud config before starting (the compose bind-mounts `config.toml` and passes
121
+
`OPENAI_API_KEY` into the container):
122
+
123
+
```bash
124
+
cp cloud_config.toml config.toml
125
+
export OPENAI_API_KEY=sk-...
126
+
```
127
+
128
+
Only the RAG embedding + reranker are still served locally, so step 3 downloads
for details, including the required OpenAI model access.
132
+
117
133
## Troubleshooting
118
134
119
135
-**O3DE doesn't start / no windows appear**: ensure you ran `xhost +local:root` and that `DISPLAY` is set (`echo $DISPLAY`). Verify your AMD GPU drivers + ROCm container prerequisites are installed.
Copy file name to clipboardExpand all lines: docs/setup.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Run HMI, agents and simulation on one computer
22
22
23
23
> [!IMPORTANT]
24
24
> This setup targets systems with approximately 48GB of available VRAM.
25
-
> If your system does not meet this requirement, you can configure the agents to use cloud-based models instead via `cloud_config.toml`.
25
+
> If your system does not meet this requirement, you can configure the agents to use cloud-based models instead via `cloud_config.toml` — see [Using cloud models](./setup_single_machine.md#using-cloud-models-instead-low-vram-machines).
0 commit comments