Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/v6/guides/creating-an-environment.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Creating Environments"
description: "Scaffold an environment, write its env.py, test it locally, and deploy it to the platform."
description: "Scaffold a HUD environment, implement env.py with tasks and capabilities, test it locally with the CLI, and deploy it to the HUD platform."
icon: "hammer"
mode: "wide"
---
Expand Down
2 changes: 1 addition & 1 deletion docs/v6/guides/running-an-eval.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Evaluating Agents"
description: "Point an agent at a set of tasks, choose where each rollout runs, and read the reward."
description: "Point an agent at a HUD taskset, pick a runtime for each rollout, run the evaluation, and read the rewards your graders return for every task."
icon: "play"
mode: "wide"
---
Expand Down
2 changes: 1 addition & 1 deletion docs/v6/reference/capabilities.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Capabilities"
description: "The wire protocols an environment exposes, each protocol's factory signature, and the clients that attach to them."
description: "Reference for HUD capabilities: the wire protocols an environment exposes, each capability's factory signature, and the clients agents use to attach."
icon: "plug"
---

Expand Down
2 changes: 1 addition & 1 deletion docs/v6/reference/cli.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "CLI"
description: "The hud command reference across the environment lifecycle."
description: "Reference for the hud command-line interface: init, dev, run, eval, models, and other commands that span the HUD environment and agent lifecycle."
icon: "terminal"
---

Expand Down
2 changes: 1 addition & 1 deletion docs/v6/reference/environment.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Environments"
description: "The Environment control object, its registration methods, and how to serve one over the wire protocol."
description: "Reference for the HUD Environment object: registering tasks, capabilities, and lifecycle hooks, plus serving an environment over the wire protocol."
icon: "cube"
---

Expand Down
2 changes: 1 addition & 1 deletion docs/v6/reference/runtime.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Runtimes"
description: "Where each rollout's environment runs - the runtime you pass at execution time."
description: "Reference for HUD runtimes: local Docker, remote workers, and the platform runtime that decides where each rollout's environment is started and executed."
icon: "rocket"
---

Expand Down
2 changes: 1 addition & 1 deletion docs/v6/reference/tasks.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Tasks & Tasksets"
description: "What a task is, how you define one, and how a single definition becomes a whole dataset you can run, group into jobs, and sync."
description: "Reference for HUD Task and Taskset: defining a single task, expanding it into a dataset, grouping tasks into jobs, and syncing tasksets to the platform."
icon: "list-check"
---

Expand Down
2 changes: 1 addition & 1 deletion docs/v6/reference/training.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Training"
description: "The TrainingClient API, training paths, losses, results, and the hud models CLI."
description: "Reference for HUD training: the TrainingClient API, supported training paths, loss functions, run results, and the hud models CLI for managing forks."
icon: "dumbbell"
mode: "wide"
---
Expand Down
2 changes: 1 addition & 1 deletion docs/v6/start/overview.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Overview"
description: "A concise, high-level explanation of core HUD concepts and the central workflow in one page."
description: "A high-level tour of HUD's core concepts - environments, tasks, capabilities, agents, runtimes, and graders - and how they connect in the central workflow."
icon: "compass"
mode: "wide"
---
Expand Down
Loading