I am adding this init to the tools: ``` class Comm...
# marvin-ai
d
I am adding this init to the tools:
Copy code
class CommandRunnerTool(BaseTool):
    name = "CommandRunnerTool"
    description = "Tool to execute a shell command. Returns the STDOUT and STDERR from the executed command."
    args_schema = CommandRunnerInput

    def __init__(self):
        super().__init__()
        self.args_schema = CommandRunnerInput

    def _run(self, command: str) -> str:
        """