Why Guard Rails Matter
When running thousands of AI calls, edge cases aren’t a question of if but when. Manual review doesn’t scale - if you’re running 50,000 calls a week, you can’t have humans listening to every conversation in real time. Legal exposure adds up fast:- A single discriminatory statement during a hiring call can trigger an EEOC complaint
- TCPA violations carry statutory damages of $500-$1,500 per call
- Class action lawyers actively monitor for these violations
- A call where your AI mishandles someone in distress can go viral
- These failures often happen in edge cases your testing didn’t cover
- Update a compliance rule once and it applies everywhere instantly
- No need to modify 30 pathways individually when regulations change
Two Types of Guard Rails
Require Guard Rails (Time-based)
Require Guard Rails (Time-based)
The guard rail must be triggered within a specified time window, otherwise the configured action runs.Used for TCPA disclosures that must happen early in the call:
- AI disclosure - Must disclose the caller is speaking with an AI
- Self introduction - Must identify who is calling
- Recording disclosure - Must disclose the call is being recorded
Forbid Guard Rails (Continuous)
Forbid Guard Rails (Continuous)
The conversation content must not trigger the guard rail. These continuously monitor the conversation.Used for:
- TCPA opt-out handling
- Custom guard rails
- Content policy violations
Apply guard rails
You can apply guard rails to:- Personas - under “General” -> “Policy & Compliance”
- Pathways - under “Policy & Compliance” in the pathway splash page
- Inbound numbers - under “Advanced” -> “Guard Rails”
- Any outbound call via API - including the
guard_railsfield in the POST/v1/callsAPI

Actions When Guard Rails Fire
When a violation is detected, set actions will execute automatically:- End call - Immediately terminate the conversation
- Transfer to human - Route to a live agent
- Move to node - Jump to a specific node in your pathway (e.g., apology node, handoff node)
Enterprise Custom Guard Rails
Enterprise customers can create up to 5 custom guard rails for industry-specific concerns/company policies. These are configured in the Enterprise Dashboard Compliance Settings.

