Runnable fastagency.base.Runnable # Bases: Protocol description property # description: str title property # title: str ui property # ui: UI wf property # wf: Workflows create # create(import_string: str) -> Generator[None, None, None] Source code in fastagency/base.py 292 293@contextmanager def create(self, import_string: str) -> Generator[None, None, None]: ... start # start( *, import_string: str, name: Optional[str] = None, initial_message: Optional[str] = None, single_run: bool = False ) -> None Source code in fastagency/base.py 295 296 297 298 299 300 301 302def start( self, *, import_string: str, name: Optional[str] = None, initial_message: Optional[str] = None, single_run: bool = False, ) -> None: ...