Docs

Talk to Your Agents ยท 03.03

The Agent Terminal

The per-agent terminal pane: direct operator-to-agent messaging and history, realtime over the conversation room.

Terminal

A direct line to one agent

The terminal is the simplest surface in the conversational layer: POST /v1/agents/:id/terminal/send posts an operator message straight to one agent, and GET /v1/agents/:id/terminal returns recent history. Realtime updates flow through the websocket conversation:agentId room, so a reply streams in as it's produced rather than waiting for a full response before anything appears.

Where chat sessions and broadcast rooms are about a conversation that can involve several participants, the terminal is deliberately one-to-one โ€” the fastest path to "just tell this specific agent something" without any room resolution in between.

Continue