singleSpeakerTTS method

GoogleLLMBuilder singleSpeakerTTS({
  1. String voiceName = 'Kore',
  2. String? model,
})

Configure for single-speaker TTS

Implementation

GoogleLLMBuilder singleSpeakerTTS({
  String voiceName = 'Kore',
  String? model,
}) {
  if (model != null) {
    ttsModel(model);
  }
  _baseBuilder.extension('defaultVoiceName', voiceName);
  return this;
}