voice method

LLMBuilder voice(
  1. String voiceName
)

Sets voice for text-to-speech (OpenAI providers)

Implementation

LLMBuilder voice(String voiceName) {
  _config = _config.withExtension('voice', voiceName);
  return this;
}