Asaad Almutareb
cleaned branch, added final streaming callback handler
fa99d8f
raw
history blame contribute delete
334 Bytes
from fastapi import APIRouter
from app.api.v1.agents import (
hf_mixtral_agent,
)
from app.api.v1.endpoints import (
add_to_kb
)
api_router = APIRouter()
api_router.include_router(hf_mixtral_agent.router, prefix="/chat", tags=["chat"])
api_router.include_router(add_to_kb.router, prefix="/add-documents", tags=["documents"])