How it works
Setwake_up on your Agent to the number of seconds of caller silence to allow before nudging. When the caller stays quiet for that long, the runtime calls your agent’s on_wake_up method, where you decide what happens next.
Configuration Options
int
default:"0"
Set on the
Agent. Seconds of caller silence to allow before triggering on_wake_up. 0 disables wake-up calls; a negative value is rejected.Callback
async method
Override this method on your
Agent to define the wake-up action. The runtime calls it each time the caller stays silent for wake_up seconds.References
- Python
- Node JS
Examples
Wakeup Call
Checkout the full implementation on GitHub