AgentsSwmlBuildersayCopy page|View as Markdown|Open in Claude|More actionssay is not a method on SwmlBuilder. The SWML schema does not define a say verb, so no dynamic method is generated for it. To produce text-to-speech output, use the play() verb with a say: URL prefix, or pass the say: URL directly via addVerb(): 1import { SwmlBuilder } from '@signalwire/sdk';23const builder = new SwmlBuilder();4builder.answer();56// Use the play verb with a say: URL prefix for text-to-speech7builder.play({ url: 'say:Hello, welcome to our service.' });89// Or use addVerb directly10builder.addVerb('play', { url: 'say:Goodbye!' });