Server SDKs
Build AI agents, control calls, send messages, and more
Set the raw prompt text, bypassing POM rendering. When raw text is set, getPrompt() returns it directly instead of rendering POM sections.
getPrompt()
The raw prompt string.
void
1import { PromptManager } from '@signalwire/sdk';23const pm = new PromptManager();4pm.setPromptText('You are a helpful assistant. Answer questions concisely.');5console.log(pm.getPrompt());