pub struct ConfigResponse {
pub skip_apps: Vec<String>,
pub skip_title_patterns: Vec<String>,
pub private_browsing_detection: bool,
pub setup_completed: bool,
pub clipboard_enabled: bool,
pub screen_capture_enabled: bool,
pub remote_access_enabled: bool,
pub routine_model: Option<String>,
pub synthesis_model: Option<String>,
pub external_llm_endpoint: Option<String>,
pub external_llm_model: Option<String>,
}Fields§
§skip_apps: Vec<String>§skip_title_patterns: Vec<String>§private_browsing_detection: bool§setup_completed: bool§clipboard_enabled: bool§screen_capture_enabled: bool§remote_access_enabled: bool§routine_model: Option<String>Anthropic model used for fast/routine tasks (e.g. classification, tagging).
synthesis_model: Option<String>Anthropic model used for synthesis tasks (e.g. distillation, narrative).
external_llm_endpoint: Option<String>Base URL for an OpenAI-compatible external LLM endpoint.
external_llm_model: Option<String>Model identifier to use with the external LLM endpoint.
Trait Implementations§
Source§impl Debug for ConfigResponse
impl Debug for ConfigResponse
Source§impl<'de> Deserialize<'de> for ConfigResponse
impl<'de> Deserialize<'de> for ConfigResponse
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 ConfigResponse
impl RefUnwindSafe for ConfigResponse
impl Send for ConfigResponse
impl Sync for ConfigResponse
impl Unpin for ConfigResponse
impl UnsafeUnpin for ConfigResponse
impl UnwindSafe for ConfigResponse
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