Skip to main content
Remote TTS (Text-to-Speech) component for audio synthesis services. Provides access to external text-to-speech services to convert text input into audio output with configurable voice parameters. Example
const ttsComponent = new RemoteTTSComponent({
  synthesisConfig: {
    voice: 'alloy',
    speed: 1.0,
    pitch: 0
  }
});

Constructor

new RemoteTTSComponent(props: RemoteTTSComponentProps): RemoteTTSComponent
Creates a new RemoteTTSComponent instance.

Parameters

props
RemoteTTSComponentProps
Configuration for the remote TTS component

Returns

A new RemoteTTSComponent instance

Overrides

AbstractComponent.constructor