Files
2026-07-22 13:48:46 +08:00

17 lines
384 B
Python

"""
Web Interface Routers Package
Contains all API router modules.
"""
from .conversation_router import router as conversation_router
from .agent_router import router as agent_router
from .chat_router import router as chat_router
from .health_router import router as health_router
__all__ = [
"conversation_router",
"agent_router",
"chat_router",
"health_router"
]