Server SDKs
Build AI agents, control calls, send messages, and more
Return the post-prompt text, or null if not set.
null
None.
string | null — The post-prompt string, or null if not set.
string | null
1import { PromptManager } from '@signalwire/sdk';23const pm = new PromptManager();4pm.setPostPrompt('Summarize the conversation.');5console.log(pm.getPostPrompt()); // "Summarize the conversation."