pub struct LlmConfig {
pub session_timeout_secs: u64,
pub greeting: String,
pub name: String,
pub self_path: Option<String>,
pub bridge_url: Option<String>,
pub max_response_tokens: u32,
}Fields§
§session_timeout_secs: u64§greeting: String§name: String§self_path: Option<String>§bridge_url: Option<String>URL of bridge-echo multiplexer. When set, voice-echo forwards transcripts to bridge-echo instead of spawning its own Claude Code process.
max_response_tokens: u32Max tokens for LLM responses. Short for voice (default: 1024).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LlmConfig
impl<'de> Deserialize<'de> for LlmConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LlmConfig
impl RefUnwindSafe for LlmConfig
impl Send for LlmConfig
impl Sync for LlmConfig
impl Unpin for LlmConfig
impl UnsafeUnpin for LlmConfig
impl UnwindSafe for LlmConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more