Chat agents are multi-turn conversational agents. Each chat pairs a scenario’s tools with a model and is served over the A2A protocol. You can chat with them directly on the platform or connect them to other systems via the A2A endpoint. A scenario qualifies as a chat when it declaresDocumentation Index
Fetch the complete documentation index at: https://docs.hud.ai/llms.txt
Use this file to discover all available pages before exploring further.
chat=True in the scenario decorator.
How to Use
From the Agents Page
- Go to the Agents page
- Click New Agent and select Chat Agent
- Select a chat scenario and model
- Your chat agent appears under Your Chat Agents
- Click it to open the detail dialog — the right side has an embedded chat where you can try it out directly, with conversation tabs at the top
From the Environments Page
- Open any environment and load a chat scenario
- The “Make Chat Agent” button lets you jump to the agents page
Building a Chat Scenario
Usechat=True on the scenario decorator:
messages array contains the conversation history. The platform manages this automatically — each turn appends to the history and passes the full context.
A2A Integration
Every chat agent exposes an A2A endpoint:SDK Usage
See Also
- Automations — Run scenarios repeatably
- QA Agents — Automated trace analysis
- A2A Integration — Connecting agents via A2A