Get list of tools used by an operation.
(self, operation: str)
| 105 | return self.get_operation(operation).get("cache_key", operation) |
| 106 | |
| 107 | def get_tools(self, operation: str) -> list[str]: |
| 108 | """Get list of tools used by an operation.""" |
| 109 | return self.get_operation(operation).get("tools", []) |
| 110 | |
| 111 | def list_operations(self) -> list[str]: |
| 112 | """Get list of all defined operations.""" |
nothing calls this directly
no test coverage detected