""" API module for AI Service. """ from app.api.chat import router as chat_router from app.api.health import router as health_router __all__ = ["chat_router", "health_router"]