Static default default : { llmNode ( agent ,
chatCtx ,
toolCtx ,
modelSettings ) : Promise < null | ReadableStream < string | ChatChunk > > ; realtimeAudioOutputNode ( _agent ,
audio ,
_modelSettings ) : Promise < null | ReadableStream < AudioFrame > > ; sttNode ( agent ,
audio ,
_modelSettings ) : Promise < null | ReadableStream < string | SpeechEvent > > ; transcriptionNode ( agent ,
text ,
_modelSettings ) : Promise < null | ReadableStream < string | TimedString > > ; ttsNode ( agent ,
text ,
_modelSettings ) : Promise < null | ReadableStream < AudioFrame > > ; } = ... Type declaration llm Node : functionllm Node ( agent , chatCtx , toolCtx , modelSettings ) : Promise < null | ReadableStream < string | ChatChunk > > Returns Promise < null | ReadableStream < string | ChatChunk > > realtime Audio Output Node : functionrealtime Audio Output Node ( _agent , audio , _modelSettings ) : Promise < null | ReadableStream < AudioFrame > > Parameters _agent : Agent < any > audio : ReadableStream < AudioFrame > | AsyncIterable < AudioFrame , any , any > _modelSettings : ModelSettings Returns Promise < null | ReadableStream < AudioFrame > > stt Node : functionstt Node ( agent , audio , _modelSettings ) : Promise < null | ReadableStream < string | SpeechEvent > > Parameters agent : Agent < any > audio : ReadableStream < AudioFrame > | AsyncIterable < AudioFrame , any , any > _modelSettings : ModelSettings Returns Promise < null | ReadableStream < string | SpeechEvent > > transcription Node : functiontranscription Node ( agent , text , _modelSettings ) : Promise < null | ReadableStream < string | TimedString > > Returns Promise < null | ReadableStream < string | TimedString > > tts Node : functiontts Node ( agent , text , _modelSettings ) : Promise < null | ReadableStream < AudioFrame > > Parameters agent : Agent < any > text : ReadableStream < string > | AsyncIterable < string , any , any > _modelSettings : ModelSettings Returns Promise < null | ReadableStream < AudioFrame > >
Class wrapper around createWarmTransferTask, preserving the
new WarmTransferTask(options).run()API. It composes the functional task and delegatesrun()to it.