From 743b35eb20a408e998e8a56e7c13d7aa81b6dafd Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Sat, 4 Apr 2026 00:58:09 -0400 Subject: [PATCH] Kill dead agent_config_dir --- src/config.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/config.rs b/src/config.rs index d29cc50..a8736b2 100644 --- a/src/config.rs +++ b/src/config.rs @@ -79,8 +79,6 @@ pub struct Config { pub agent_budget: usize, #[serde(deserialize_with = "deserialize_path")] pub prompts_dir: PathBuf, - #[serde(default, deserialize_with = "deserialize_path_opt")] - pub agent_config_dir: Option, /// Resolved from agent_model → models → backend (not in config directly) #[serde(skip)] pub api_base_url: Option, @@ -141,7 +139,6 @@ impl Default for Config { llm_concurrency: 1, agent_budget: 1000, prompts_dir: home.join(".consciousness/prompts"), - agent_config_dir: None, api_base_url: None, api_key: None, api_model: None, @@ -256,9 +253,6 @@ impl Config { if let Some(s) = cfg.get("prompts_dir").and_then(|v| v.as_str()) { config.prompts_dir = expand_home(s); } - if let Some(s) = cfg.get("agent_config_dir").and_then(|v| v.as_str()) { - config.agent_config_dir = Some(expand_home(s)); - } if let Some(s) = cfg.get("api_base_url").and_then(|v| v.as_str()) { config.api_base_url = Some(s.to_string()); }