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
Copy file name to clipboardExpand all lines: docs/train-agents/quickstart.mdx
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,18 @@ title: "RL Quickstart"
3
3
icon: "graduation-cap"
4
4
---
5
5
6
+
## Prerequisites
7
+
8
+
- HUD API key: Remote training requires authentication. Set `HUD_API_KEY` before running:
9
+
10
+
```bash
11
+
export HUD_API_KEY="sk-hud-..."# get one at https://hud.so
12
+
# Or persist it locally:
13
+
hud set HUD_API_KEY=sk-hud-...
14
+
```
15
+
16
+
- Docker daemon: For local runs (using `--local`) or when training against a local Docker image, ensure Docker Desktop is installed and the Docker daemon is running.
0 commit comments