dashboard/app/plugins/__init__.py

9 lines
442 B
Python

from app.plugins.base import Plugin
from app.plugins.lact import plugin as lact_plugin, router as lact_router
from app.plugins.llamacpp import plugin as llamacpp_plugin, router as llamacpp_router
from app.plugins.sleep import plugin as sleep_plugin, router as sleep_router
PLUGINS: list[Plugin] = [llamacpp_plugin, sleep_plugin, lact_plugin]
ROUTERS = [llamacpp_router, sleep_router, lact_router]
__all__ = ["PLUGINS", "ROUTERS", "Plugin"]