register method
Registers tool, overwriting any existing registration with the same name.
Implementation
void register(Tool tool) {
_tools[tool.name] = tool;
_logger.debug('Tool registered: ${tool.name}');
}
Registers tool, overwriting any existing registration with the same name.
void register(Tool tool) {
_tools[tool.name] = tool;
_logger.debug('Tool registered: ${tool.name}');
}