Beracles's picture
add calling openai assistant
f15d3a0
raw
history blame contribute delete
241 Bytes
from fastapi import APIRouter
from . import use_aliyun, use_openai
router = APIRouter(
prefix="/talk-to-your-manual",
tags=["Talk To Your Manual"],
)
router.include_router(use_aliyun.router)
router.include_router(use_openai.router)