taps.executor¶ taps/executor/__init__.py ExecutorConfig ¶ Bases: BaseModel, ABC Abstract Executor plugin configuration. get_executor() abstractmethod ¶ get_executor() -> Executor Create an executor from the configuration. Source code in taps/executor/_protocol.py 21 22 23 24@abc.abstractmethod def get_executor(self) -> Executor: """Create an executor from the configuration.""" ...