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 385 386@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 388 389 390 391 392 393 394 395def start( self, *, import_string: str, name: Optional[str] = None, params: dict[str, Any], single_run: bool = False, ) -> None: ...