Server SDKs
Build AI agents, control calls, send messages, and more
Set a single AI parameter by key.
Parameter name (e.g., "temperature", "end_of_speech_timeout").
"temperature"
"end_of_speech_timeout"
Parameter value. Type depends on the parameter being set.
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.setParam('temperature', 0.5);6await agent.serve();