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

# Live View

> Watch any session at 60fps and keep humans in the loop.

Live View is the human window into an API session — a real-time 60fps WebRTC
feed in the Console. It's how owners supervise agents and how you debug loops.

## Open it

Go to **Console → Sessions**, find your session by id, and click the **Eye**
icon. You'll see the live feed plus telemetry (ping, delay, signal).

```python theme={null}
session = gw.create_session(rig_id=rig.id, mode="desktop")
print("Watch:", session.session_id)
# Console → Sessions → Eye on that id
```

## Programmatic stream

To render the feed in your own surface, get WebRTC signaling credentials:

```python theme={null}
creds = gw.stream(sid)   # WebRTC signaling credentials for a live feed
```

## The on-host indicator

While the session is active, the host displays an **"API session active"**
indicator on the physical machine. Live View and this indicator together mean an
agent's actions are always observable — see [Safety and
consent](/concepts/safety-and-consent).

<Tip>
  Keep Live View open while developing an agent loop. Watching the real machine
  react in real time is the fastest way to catch mis-grounded clicks.
</Tip>
