Variables
Variables let you personalize conversations with dynamic data. Instead of static text, insert values that change based on the caller, API responses, or information collected during the call.
Location: Config Panel (right sidebar) → Variables
Variable Types
User Defined
System
API

Variables you create with default values.
Syntax
Use double curly braces:
Example
In your prompt:
At runtime:
Default Values
Handle missing variables gracefully:
If customer_name is empty → “Hello there!”
Creating User Variables
- Open the Variables panel
- Go to User Defined tab
- Click + Add Variable
- Enter name and default value
- Use in prompts with
{{name}}syntax
Best Practices
Use descriptive names
Always have fallbacks
What if the variable is empty?
- Use default values:
{{name|there}} - Handle in prompt: “If customer name is unknown, greet generically”
Test substitution
Verify variables replace correctly. Check Convo Logs to see actual values.

