> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hud.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Robot benchmark

> Run a vision-language-action policy against a containerized robot simulator on HUD, with episodes graded by task success and reproducible task seeds.

<Note>
  The `robot` capability is in **beta** - see the [Robots reference](/v6/advanced/robots).
</Note>

This cookbook runs **pi0.5** against **LIBERO** (a Franka Panda manipulation benchmark) packaged as a Docker image: three episodes, each in a fresh container, graded by the sim's own success check. The split of work is the thing to notice - the policy runs in *your* process on your GPU, while the container is CPU-only and publishes exactly one port.

## The environment

The env module only declares; it runs no policy of its own. It wires three things together: a **bridge** that drives the simulator, a **`RobotEndpoint`** that exposes the bridge as a capability, and two-yield task templates. This is `demos/inventory/envs/libero/env.py`, abbreviated:

```python env.py theme={"dark"}
from hud import Environment
from hud.environment.robot import RobotEndpoint
from config import build_contract            # the env's own contract helper
from libero_sim_bridge import LiberoSimBridge

CONTRACT = build_contract({"use_delta": True})  # the env's self-describing obs/action schema

env = Environment(name="libero")
endpoint = RobotEndpoint(LiberoSimBridge(use_delta=True))  # drive the bridge through the endpoint

@env.initialize
async def _up():
    await endpoint.start()
    env.add_capability(await endpoint.capability(contract=CONTRACT))

@env.shutdown
async def _down():
    await endpoint.stop()

@env.template(id="libero_spatial")
async def libero_spatial(libero_task_id: int, init_state_id: int = 0):
    prompt = await endpoint.reset(task_suite="libero_spatial",
                                  task_id=libero_task_id, init_state_id=init_state_id)
    yield {"prompt": prompt}
    yield await endpoint.result()
```

The image's CMD serves it with the standard entry point (`hud serve env.py --host 0.0.0.0 --port 8765`). This env lives in HUD's `demos/` examples tree, a sibling of the `hud-python` SDK; build it from the parent directory that holds **both** `demos/` and `hud-python/` so the image can install the SDK from local source:

```bash theme={"dark"}
docker build -f demos/inventory/envs/libero/Dockerfile -t hud-libero-env .
```

## The agent

A stock LeRobot checkpoint needs no custom Model or Adapter:

```python run_libero.py theme={"dark"}
import asyncio
import torch
from lerobot.policies.factory import make_pre_post_processors
from lerobot.policies.pi05.modeling_pi05 import PI05Policy

from hud.agents.robot.adapter import LeRobotAdapter
from hud.agents.robot.agent import RobotAgent
from hud.agents.robot.model import LeRobotModel
from hud.eval import DockerRuntime, Task, Taskset

CHECKPOINT = "lerobot/pi05_libero_finetuned"

class PI05Agent(RobotAgent):
    max_steps = 400

    def __init__(self):
        device = "cuda" if torch.cuda.is_available() else "cpu"
        policy = PI05Policy.from_pretrained(CHECKPOINT).to(device).eval()
        pre, post = make_pre_post_processors(
            policy.config, CHECKPOINT,
            preprocessor_overrides={"device_processor": {"device": device}},
        )
        self.model = LeRobotModel(policy, pre, post)
        self.adapter = LeRobotAdapter(model_image_keys=list(policy.config.image_features))

TASKS = [
    Task(env="libero", id="libero_spatial", args={"libero_task_id": t, "init_state_id": 0})
    for t in range(3)
]

async def main():
    job = await Taskset("libero-demo", TASKS).run(
        PI05Agent(), runtime=DockerRuntime("hud-libero-env"), max_concurrent=1,
    )
    rewards = [run.reward for run in job.runs]
    print(f"success_rate={sum(rewards) / len(rewards):.2f}")

asyncio.run(main())
```

## Run it

```bash theme={"dark"}
python run_libero.py
```

Here `DockerRuntime` sets the placement, and each rollout is self-contained:

* **The container** is created fresh with `docker run`, publishes its control port, is connected to, and is removed when the episode ends.
* **The agent** reads the env's **contract** from the manifest at connect time and wires cameras, state, and actions itself - there is no shared config between this script and the image.
* **The robot WebSocket** binds to container-loopback and rides that single control port through capability tunneling.

For heavy sims (or sweeps), skip the per-episode boot with one long-lived container:

```bash theme={"dark"}
docker run -d --name libero-env -p 8765:8765 hud-libero-env
```

```python theme={"dark"}
from hud.eval.runtime import Runtime
job = await Taskset("libero-demo", TASKS).run(agent, runtime=Runtime("tcp://127.0.0.1:8765"))
```

## Read the trace

With `HUD_API_KEY` set, every episode streams to the platform automatically: the trace viewer plays the camera frames back under a scrubber, with **diamond markers at each step where the policy predicted a fresh action chunk** - scrub between markers to watch a chunk execute, click one to jump to the decision point.

## See also

<CardGroup cols={2}>
  <Card title="Robots reference" icon="robot" href="/v6/advanced/robots">
    Contracts, bridges, sim threading, and the harness API.
  </Card>

  <Card title="Package & deploy" icon="rocket" href="/v6/reference/runtime" />
</CardGroup>
