11 lines
611 B
Python
11 lines
611 B
Python
|
|
from fastapi import APIRouter
|
||
|
|
from app.api.api_v1 import api_keys, auth, chat, knowledge_base, testing, tools
|
||
|
|
|
||
|
|
api_router = APIRouter()
|
||
|
|
|
||
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
|
||
|
|
api_router.include_router(knowledge_base.router, prefix="/knowledge-base", tags=["knowledge-base"])
|
||
|
|
api_router.include_router(chat.router, prefix="/chat", tags=["chat"])
|
||
|
|
api_router.include_router(api_keys.router, prefix="/api-keys", tags=["api-keys"])
|
||
|
|
api_router.include_router(testing.router, prefix="/testing", tags=["testing"])
|
||
|
|
api_router.include_router(tools.router, prefix="/tools", tags=["tools"])
|