Server SDKs
Build AI agents, control calls, send messages, and more
Get an existing step by name for inspection or modification.
Step name to look up.
Step if found, undefined otherwise.
Step
undefined
1import { ContextBuilder } from '@signalwire/sdk';23const builder = new ContextBuilder();4const ctx = builder.addContext('default');5ctx.addStep('collect_info').setText('Collect the caller\'s account information.');67const step = ctx.getStep('collect_info');8if (step) {9 step.setFunctions(['verify_identity']);10}