init. project
This commit is contained in:
11
rag-web-ui/backend/app/api/api_v1/api.py
Normal file
11
rag-web-ui/backend/app/api/api_v1/api.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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"])
|
||||
Reference in New Issue
Block a user