1 2 3 4 5 6 7 8 9
use super::llm_builder::LLMBuilder; impl LLMBuilder { /// Set the voice for TTS providers. pub fn voice(mut self, voice: impl Into<String>) -> Self { self.state.voice = Some(voice.into()); self } }