Server SDKs
Build AI agents, control calls, send messages, and more
Add enter 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.addEnterFiller('en-US', [8 'Let me connect you with support...',9 'Transferring you now...',10]);11support.addStep('diagnose').setText('Understand the customer\'s issue.');