pub struct Config {Show 27 fields
pub embedding: EmbeddingConfig,
pub llm: LlmConfig,
pub models: ModelSwitchConfig,
pub retrieval: RetrievalConfig,
pub paths: PathConfig,
pub server: ServerConfig,
pub community: CommunityConfig,
pub conversations: ConversationsConfig,
pub sync: SyncConfig,
pub storage: StorageConfig,
pub sources_global: SourcesGlobalConfig,
pub sleep_cycle: SleepCycleConfig,
pub skills: SkillsConfig,
pub skill_llm: SkillLlmConfig,
pub cross_agent: CrossAgentConfig,
pub nudge: NudgeConfig,
pub mobile_relay: MobileRelayConfig,
pub session: SessionCfg,
pub harvest: HarvestCfg,
pub cc_proxy: CcProxyConfig,
pub cli: CliConfig,
pub parallel_jobs: ParallelJobsConfig,
pub federation_snapshot: SnapshotConfig,
pub memory: MemoryConfig,
pub fleet_run: FleetRunConfig,
pub open_items: OpenItemsConfig,
pub fleet: FleetConfig,
}Expand description
Global MUR configuration (~/.mur/config.yaml)
Fields§
§embedding: EmbeddingConfig§llm: LlmConfig§models: ModelSwitchConfig§retrieval: RetrievalConfig§paths: PathConfig§server: ServerConfig§community: CommunityConfig§conversations: ConversationsConfig§sync: SyncConfig§storage: StorageConfig§sources_global: SourcesGlobalConfig§sleep_cycle: SleepCycleConfig§skills: SkillsConfig§skill_llm: SkillLlmConfig§cross_agent: CrossAgentConfig§nudge: NudgeConfig§mobile_relay: MobileRelayConfig§session: SessionCfg§harvest: HarvestCfg§cc_proxy: CcProxyConfig§cli: CliConfig§parallel_jobs: ParallelJobsConfig§federation_snapshot: SnapshotConfigMemory-federation snapshot settings (federation_snapshot:).
memory: MemoryConfigProactive memory capture (memory:, federation P2).
fleet_run: FleetRunConfig§open_items: OpenItemsConfig§fleet: FleetConfigImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
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 Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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