diff --git a/assets/settings/default.json b/assets/settings/default.json index ad52b7f597..6b8d050cb9 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -705,8 +705,8 @@ "web_search": true } }, - "manual": { - "name": "Manual", + "minimal": { + "name": "Minimal", "enable_all_context_servers": false, "tools": {} } diff --git a/crates/agent/src/profile_selector.rs b/crates/agent/src/profile_selector.rs index 38ec7ff0c8..b458f90f5a 100644 --- a/crates/agent/src/profile_selector.rs +++ b/crates/agent/src/profile_selector.rs @@ -93,7 +93,7 @@ impl ProfileSelector { let documentation = match profile.name.to_lowercase().as_str() { builtin_profiles::WRITE => Some("Get help to write anything."), builtin_profiles::ASK => Some("Chat about your codebase."), - builtin_profiles::MANUAL => Some("Chat about anything with no tools."), + builtin_profiles::MINIMAL => Some("Chat about anything with no tools."), _ => None, }; diff --git a/crates/assistant_settings/src/agent_profile.rs b/crates/assistant_settings/src/agent_profile.rs index f5f42397a6..7c9b3bf2a7 100644 --- a/crates/assistant_settings/src/agent_profile.rs +++ b/crates/assistant_settings/src/agent_profile.rs @@ -10,10 +10,10 @@ pub mod builtin_profiles { pub const WRITE: &str = "write"; pub const ASK: &str = "ask"; - pub const MANUAL: &str = "manual"; + pub const MINIMAL: &str = "minimal"; pub fn is_builtin(profile_id: &AgentProfileId) -> bool { - profile_id.as_str() == WRITE || profile_id.as_str() == ASK || profile_id.as_str() == MANUAL + profile_id.as_str() == WRITE || profile_id.as_str() == ASK || profile_id.as_str() == MINIMAL } }