Server SDKs
Build AI agents, control calls, send messages, and more
Set all exit fillers at once. Exit fillers are spoken when the AI navigates away from this context.
Dictionary mapping language codes (or "default") to lists of filler phrases.
"default"
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.setExitFillers({8 'en-US': ['Thank you for contacting support.', 'Glad I could help.'],9 'default': ['Thank you.'],10});11support.addStep('diagnose').setText('Understand the customer\'s issue.');