Skip to main content

llm/builder/
voice.rs

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