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 409 410@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 412 413 414 415 416 417 418 419def start( self, *, import_string: str, name: Optional[str] = None, params: dict[str, Any], single_run: bool = False, ) -> None: ...