pub struct UpdateConfigRequest {
pub skip_apps: Option<Vec<String>>,
pub skip_title_patterns: Option<Vec<String>>,
pub private_browsing_detection: Option<bool>,
pub setup_completed: Option<bool>,
pub clipboard_enabled: Option<bool>,
pub screen_capture_enabled: Option<bool>,
pub remote_access_enabled: Option<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: Option<Vec<String>>§skip_title_patterns: Option<Vec<String>>§private_browsing_detection: Option<bool>§setup_completed: Option<bool>§clipboard_enabled: Option<bool>§screen_capture_enabled: Option<bool>§remote_access_enabled: Option<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 UpdateConfigRequest
impl Debug for UpdateConfigRequest
Source§impl<'de> Deserialize<'de> for UpdateConfigRequest
impl<'de> Deserialize<'de> for UpdateConfigRequest
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 UpdateConfigRequest
impl RefUnwindSafe for UpdateConfigRequest
impl Send for UpdateConfigRequest
impl Sync for UpdateConfigRequest
impl Unpin for UpdateConfigRequest
impl UnsafeUnpin for UpdateConfigRequest
impl UnwindSafe for UpdateConfigRequest
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