UI fastagency.base.UI # Bases: Protocol create # create(app: Runnable, import_string: str) -> Iterator[None] Source code in fastagency/base.py 217 218@contextmanager def create(self, app: "Runnable", import_string: str) -> Iterator[None]: ... create_subconversation # create_subconversation() -> UI Source code in fastagency/base.py 236def create_subconversation(self) -> "UI": ... process_message # process_message(message: IOMessage) -> Optional[str] Source code in fastagency/base.py 230def process_message(self, message: IOMessage) -> Optional[str]: ... start # start( *, app: Runnable, import_string: str, name: Optional[str] = None, initial_message: Optional[str] = None, single_run: bool = False ) -> None Source code in fastagency/base.py 220 221 222 223 224 225 226 227 228def start( self, *, app: "Runnable", import_string: str, name: Optional[str] = None, initial_message: Optional[str] = None, single_run: bool = False, ) -> None: ...