Get cache key for an operation.
(self, operation: str)
| 101 | return self.data["operations"][operation] |
| 102 | |
| 103 | def get_cache_key(self, operation: str) -> str: |
| 104 | """Get cache key for an operation.""" |
| 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.""" |
nothing calls this directly
no test coverage detected