pub struct ConfigResponse {Show 15 fields
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>,
pub external_llm_api_key_configured: bool,
pub everyday_source: Option<String>,
pub synthesis_source: Option<String>,
pub page_map_auto_suggest: bool,
}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.
external_llm_api_key_configured: boolWhether an external-LLM API key is stored. The key value itself is never serialized anywhere.
everyday_source: Option<String>Everyday-job source pin (raw config value): "anthropic" | "external"
| "on_device", or absent/null when unpinned. Lets the app show the
pin the user chose distinctly from the resolved source.
synthesis_source: Option<String>Synthesis-job source pin (raw config value): "anthropic" |
"external", or absent/null when unpinned.
page_map_auto_suggest: boolWhether the proactive Page-Map suggestion phase is enabled. Default true.
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