Server SDKs
Build AI agents, control calls, send messages, and more
Add a POM section with bullets to the system prompt. Cannot be combined with setSystemPrompt().
setSystemPrompt()
Section heading.
List of bullet point strings.
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.addSystemBullets('Guidelines', [8 'Verify identity before making changes',9 'Offer to escalate if issue is unresolved after 5 minutes',10]);11support.addStep('diagnose').setText('Understand the customer\'s issue.');