Skip to content

taps.executor

ExecutorConfig

Bases: ABC, BaseModel

Abstract Executor plugin configuration.

Parameters:

  • name (str) –

get_executor abstractmethod

get_executor() -> Executor

Create an executor from the configuration.

Source code in taps/executor/_protocol.py
@abc.abstractmethod
def get_executor(self) -> Executor:
    """Create an executor from the configuration."""
    ...