Server SDKs
Build AI agents, control calls, send messages, and more
Update AI runtime settings dynamically during a call. Changes take effect for subsequent LLM turns.
Object of settings to update. Supported keys:
frequency-penalty
float
presence-penalty
max-tokens
int
top-p
confidence
barge-confidence
temperature
FunctionResult — this, for chaining.
FunctionResult
this
1import { FunctionResult } from '@signalwire/sdk';23const result = new FunctionResult()4 .updateSettings({ temperature: 0.3, 'top-p': 0.9 });