(self, tools: dict[str, Tool])
| 1677 | class PythonExecutor(ABC): |
| 1678 | @abstractmethod |
| 1679 | def send_tools(self, tools: dict[str, Tool]) -> None: ... |
| 1680 | |
| 1681 | @abstractmethod |
| 1682 | def send_variables(self, variables: dict[str, Any]) -> None: ... |
no outgoing calls