asyncio¶ asyncio ¶ Attributes¶ __doctitle__ module-attribute ¶ __doctitle__ = 'AsyncIO-based InferFlow Modules' __all__ module-attribute ¶ __all__ = ['batch', 'pipeline', 'runtime', 'workflow'] Functions¶ __getattr__ ¶ __getattr__(name: str) -> Any Source code in inferflow/asyncio/__init__.py 11 12 13 14def __getattr__(name: str) -> t.Any: if name in __all__: return importlib.import_module("." + name, __name__) raise AttributeError(f"module {__name__!r} has no attribute {name!r}") Submodules¶ Batch Pipeline (Async) Inference Runtimes (Async) Workflow (Async)