
Where agents live
Internal agents are not on the Flows page anymore — they’re surfaced through four fixed buttons at the bottom-right of every page:| Button | What it opens |
|---|---|
| Chat with Agent | The chat panel for whichever agent you last used. |
| Chat History | Past chat threads, searchable and resumable. |
| Explore Agents | The list of every agent in your tenant, plus the + button to create a new one. |
| Scheduled Agent Tasks | Background jobs you’ve handed off to agents (e.g., “every Monday, summarise last week’s flagged transcripts”). |
⋮) for edit / delete actions.
Talking to an agent
Click any agent in the Explore Agents panel to open the chat panel pre-targeted at that agent. Or click Chat with Agent (which resumes the last-used agent). Send a message; the agent uses its configured prompt and functions to respond.
Creating an agent
Click the + button at the top of the Explore Agents panel (or navigate to/Agents/New). The editor opens to the Prompt tab.
Configuring an agent

Prompt
The system instructions that define the agent’s role, capabilities, and behavior. Includes:- Name — shown in Explore Agents and the breadcrumb.
- Description — one-line summary, also shown in Explore Agents.
- Model Type — pick the model variant. Fast (lower latency, lighter reasoning) vs reasoning-tier (slower, deeper).
- Prompt — rich-text editor for the agent’s instructions. Supports headings, bullets, bold/italic.
- Suggested Messages — clickable starter prompts shown when a user opens a fresh chat. Each suggestion has a label (what the user sees) and a prompt (what gets sent).
Functions

listTranscripts,countTranscripts— search and count.getTranscriptReport,getReadableTranscript— inspect.getTagsForTranscript,setTagsForTranscript— read and write tags.searchDocuments— ground in playbooks and SOPs.
The fewer functions you enable, the more predictable the agent’s behaviour. Resist the urge to grant every function “just in case” — every extra function adds reasoning load.
Memory
Long-lived facts the agent should always know. Add entries for things like “the company’s fiscal year ends in March”, “our SLA is 24 business hours”, “we never discount more than 10% without manager approval”. Memory entries persist across every chat and apply to every conversation the agent has.Variables
Static parameter values that the enabled functions require. When you add a function that needs configuration (an API key, a tenant ID, a base URL), that requirement surfaces here so you can supply the value once instead of per-call.Branding
PDF and PowerPoint export styling for agents that produce documents. Set a company name, primary/secondary colours, upload a logo (PNG/JPEG/SVG ≤ 2 MB), and optionally write free-form logo-usage instructions (“logo top-right, page 1 only”). Leave blank to use platform defaults.Scheduled agent tasks
The Scheduled Agent Tasks button (bottom-right of every page) opens the schedule manager. Set up recurring or one-off jobs an agent should run on its own — e.g., “every weekday at 8am, list yesterday’s flagged conversations and post a summary to a thread”. Useful for handing off the kind of routine analysis that doesn’t need a human in the loop.Use cases
| Agent purpose | Functions typically enabled | Notes |
|---|---|---|
| Conversation Analyst | listTranscripts, countTranscripts, getTranscriptReport, getTagsForTranscript, setTagsForTranscript | QA and reporting. |
| Flow Builder | searchFlows, createFlow, createState, editState, createTransition | Drafts flows from a natural-language brief. |
| Campaign Reporter | listOutboundCampaigns, getCampaignStats, searchTranscripts | Pull-the-numbers reports on outbound results. |
| Knowledge Curator | searchDocuments, listFaqs, createFaq | Find gaps in your knowledge base and propose new FAQs. |
Agents vs Flows
| Agent | Flow | |
|---|---|---|
| Who talks to it | Your team, inside the platform. | Your customers, on a channel. |
| Surface | Chat panel (bottom-right). | Voice, SMS, email, web chat, etc. via a Point of Contact. |
| Logic shape | Single prompt + tool list. | Stateful graph with transitions, events, and per-state thoughts. |
| Published? | Always live for everyone in your tenant. | Has draft and published versions. |
| Testable how | Just chat with it. | Chat sandbox + Test Scenarios. |
Related
Functions and events
Authoring the JS functions agents call.
Flows
Customer-facing equivalent.
Documents
Ground your agents in real source-of-truth content.
Schedule
When the tenant is open — relevant for scheduled agent tasks.



