feat: update README with enhanced descriptions and security features; refactor catastrophic guard checks and tool execution handling

This commit is contained in:
asepharyana
2026-07-12 03:37:27 +07:00
parent d957e8d4ce
commit 4bfbe1d1b9
7 changed files with 250 additions and 210 deletions
+3 -3
View File
@@ -11,15 +11,15 @@ pub enum InternetMode {
impl InternetMode {
pub fn can_fetch(&self) -> bool {
matches!(self, InternetMode::Full)
true
}
pub fn can_download(&self) -> bool {
matches!(self, InternetMode::Full)
true
}
pub fn can_search(&self) -> bool {
matches!(self, InternetMode::Full)
true
}
}