List all registered tool names
(&self)
| 130 | |
| 131 | /// List all registered tool names |
| 132 | pub fn list(&self) -> Vec<String> { |
| 133 | let tools = self.tools.read().unwrap(); |
| 134 | tools.keys().cloned().collect() |
| 135 | } |
| 136 | |
| 137 | /// Get the number of registered tools |
| 138 | pub fn len(&self) -> usize { |
no outgoing calls