Spaces:
Sleeping
Sleeping
| from abc import ABC, abstractmethod # | |
| class Tool(ABC): | |
| def run(self, input_data: dict) -> dict: | |
| """Execute the tool and return structured results""" | |
| pass | |
| def name(self) -> str: | |
| """Return a unique name for the tool""" | |
| pass | |