Server SDKs
Build AI agents, control calls, send messages, and more
Register a specific SIP username that should be routed to this agent.
SIP username to register for this agent.
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.enableSipRouting();6agent.registerSipUsername('help-desk');7agent.registerSipUsername('customer-service');8await agent.serve();