NLProxy / nlproxy /server /apis /__init__.py
Luiserb's picture
first commit
2129c29
Raw
History Blame Contribute Delete
284 Bytes
"""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"]