Server SDKs
Build AI agents, control calls, send messages, and more
Append body text or bullets to an existing POM section, creating it if absent.
The section heading to append to.
Content to add.
Body text to append.
A single bullet point to add.
Multiple bullet points to add.
void
1import { PromptManager } from '@signalwire/sdk';23const pm = new PromptManager();4pm.addSection('Rules', { bullets: ['Be concise'] });5pm.addToSection('Rules', { bullet: 'Be polite' });6pm.addToSection('Rules', { bullets: ['Never guess', 'Stay on topic'] });7console.log(pm.getPrompt());