Skip to content

Runnable

fastagency.base.Runnable #

Bases: Protocol

description property #

description: str

provider property #

provider: ProviderProtocol

title property #

title: str

ui property #

ui: UIBase

create #

create(import_string: str) -> Generator[None, None, None]
Source code in fastagency/base.py
@contextmanager
def create(self, import_string: str) -> Generator[None, None, None]: ...

start #

start(
    *,
    import_string: str,
    name: Optional[str] = None,
    params: dict[str, Any],
    single_run: bool = False
) -> None
Source code in fastagency/base.py
def start(
    self,
    *,
    import_string: str,
    name: Optional[str] = None,
    params: dict[str, Any],
    single_run: bool = False,
) -> None: ...