Runnable fastagency.base.Runnable # Bases: Protocol ui property # ui: UI wf property # wf: Workflows create # create(import_string: str) -> Generator[None, None, None] Source code in fastagency/base.py 281 282@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 284 285 286 287 288 289 290 291def start( self, *, import_string: str, name: Optional[str] = None, initial_message: Optional[str] = None, single_run: bool = False, ) -> None: ...