Server SDKs
Build AI agents, control calls, send messages, and more
Add exit fillers for a specific language.
Language code (e.g., "en-US", "es") or "default" for a catch-all.
"en-US"
"es"
"default"
List of filler phrases.
Context — Self for method chaining.
Context
1import { ContextBuilder } from '@signalwire/sdk';23const builder = new ContextBuilder();4builder.addContext('default').addStep('menu').setText('Ask what the caller needs.');56const support = builder.addContext('support');7support.addExitFiller('en-US', [8 'Thank you for contacting support.',9 'Glad I could help.',10]);11support.addStep('diagnose').setText('Understand the customer\'s issue.');