Server SDKs
Build AI agents, control calls, send messages, and more
Remove all pre-answer 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.addPreAnswerVerb('play', { urls: ['ring:us'], auto_answer: false });6agent.clearPreAnswerVerbs();7await agent.serve();