18 lines
509 B
Python
18 lines
509 B
Python
"""API routes module"""
|
|
from fastapi import APIRouter
|
|
|
|
from luxx.api import auth, tools, providers, agents, rooms
|
|
from luxx.api.chat import conversations, messages
|
|
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Register sub-routes
|
|
api_router.include_router(auth.router)
|
|
api_router.include_router(conversations.router)
|
|
api_router.include_router(messages.router)
|
|
api_router.include_router(tools.router)
|
|
api_router.include_router(providers.router)
|
|
api_router.include_router(agents.router)
|
|
api_router.include_router(rooms.router)
|