Check if a tool is enabled.
(self, tool_name: str)
| 1069 | self._invalidate_caches() |
| 1070 | |
| 1071 | def is_tool_enabled(self, tool_name: str) -> bool: |
| 1072 | """Check if a tool is enabled.""" |
| 1073 | return self.tool_filter.is_tool_enabled(tool_name) |
| 1074 | |
| 1075 | def get_disabled_tools(self) -> dict[str, str]: |
| 1076 | """Get all disabled tools with their reasons.""" |
no outgoing calls