What Are Starting Actions?
Starting Actions are pre-configured prompt chips that appear in the chat UI before the user sends their first message. They sit below the agent’s greeting and let users start common tasks with one click instead of typing. Admins define each action with a name, icon, prompt template, and optional variables.Where They Appear
Starting Actions render as clickable chips in the agent chat interface, directly under the agent’s opening message. After the user sends their first message, the chips are no longer shown for that conversation.Admin Configuration
Configure Starting Actions in Agent Configuration. Per-action settings:- Name – Label shown on the chip
- Icon – Icon for the chip
- Prompt template – The text sent when the user clicks the action; can include
{{variableName}}placeholders - Enabled – Toggle to show or hide the action
- Display order – Order of chips; reorder via drag-and-drop
Variable Support
Use{{variableName}} in the prompt template to collect input before sending.
- Placeholders are auto-detected from the template and can be configured.
- Variable types: Text, Number, Dropdown.
- Validation: Optional rules such as pattern, min/max length, and custom error messages.
Runtime Behavior
| Action type | Behavior |
|---|---|
| No variables | Clicking the chip sends the prompt immediately. |
| With variables | Clicking the chip expands an inline form; after the user fills it, the prompt is sent with the values substituted. |
Related Documentation
- Building Agents – Agent creation, configuration, and chat experience, including Starting Actions in the UI.