Server SDKs
Build AI agents, control calls, send messages, and more
Remove all post-AI verbs.
None.
AgentBase — Returns this for method chaining.
AgentBase
this
1import { AgentBase } from '@signalwire/sdk';23const agent = new AgentBase({ name: 'support', route: '/support' });4agent.setPromptText('You are a helpful assistant.');5agent.addPostAiVerb('hangup', {});6agent.clearPostAiVerbs();7await agent.serve();