CoolFace
Apppublic

Nephalem/llama-cpp-telegram_bot

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
__init__.py14 linesDownload Raw Back to app
1 2"""Telegram bot web application package."""3 4from importlib import import_module5 6 7def __getattr__(name: str):8    if name == "app":9        return import_module(".main", __name__).app10    raise AttributeError(name)11 12 13__all__ = ["app"]14