Files
rag_agent/rag-web-ui/backend/app/api/api_v1/api.py

11 lines
611 B
Python
Raw Normal View History

2026-04-13 11:34:23 +08:00
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"])