Get list of all defined operations.
(self)
| 109 | return self.get_operation(operation).get("tools", []) |
| 110 | |
| 111 | def list_operations(self) -> list[str]: |
| 112 | """Get list of all defined operations.""" |
| 113 | return list(self.data["operations"].keys()) |
| 114 | |
| 115 | def get_description(self, operation: str) -> str: |
| 116 | """Get human-readable description of operation.""" |
no test coverage detected