(name: &str)
| 155 | } |
| 156 | |
| 157 | fn is_known_special_tool(name: &str) -> bool { |
| 158 | matches!( |
| 159 | name, |
| 160 | "web_search" | "web_fetch" | "git" | "batch" | "program" |
| 161 | ) |
| 162 | } |
| 163 | |
| 164 | #[cfg(test)] |
| 165 | mod tests { |
no outgoing calls
no test coverage detected