Server SDKs
Build AI agents, control calls, send messages, and more
Skip waiting for user input when entering this step. The AI proceeds immediately without waiting for the caller to speak.
Whether to skip the user turn.
Step — Self for method chaining.
Step
1import { ContextBuilder } from '@signalwire/sdk';23const builder = new ContextBuilder();4const ctx = builder.addContext('default');5const intro = ctx.addStep('intro');6intro.setText('Introduce yourself and immediately begin the intake process.');7intro.setSkipUserTurn(true);8ctx.addStep('intake').setText('Collect the caller\'s information.');