File size: 325 Bytes
999bb04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """Command execution helpers for the AURA client."""
from __future__ import annotations
from typing import Any
class CommandExecutor:
def execute(self, command: dict[str, Any]) -> dict[str, Any]:
tool = command.get("tool")
return {"tool": tool, "args": command.get("args", {}), "status": "executed"}
|