pub enum AppMode {
Local,
Llm(LlmModeConfig),
}Expand description
Analysis mode: local (no LLM) or LLM-powered.
Variants§
Local
Local mode: use hardcoded i18n roast messages.
Llm(LlmModeConfig)
LLM mode: generate roasts via an external LLM API.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AppMode
impl RefUnwindSafe for AppMode
impl Send for AppMode
impl Sync for AppMode
impl Unpin for AppMode
impl UnsafeUnpin for AppMode
impl UnwindSafe for AppMode
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