Spaces:
Running
Running
| """API router package for NLProxy server. | |
| Author: IntelliDeep Labs Team | |
| License: BSL 1.1 | |
| """ | |
| from .chat import router as chat_router | |
| from .health import router as health_router | |
| from .models import router as models_router | |
| __all__ = ["chat_router", "health_router", "models_router"] | |