保定ai问答主体项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
bd_ai_fastapi/app/api/chat/ai/__init__.py

8 lines
188 B

from fastapi import APIRouter
from .chat_router import router
ai_api_router = APIRouter()
ai_api_router.include_router(router, tags=["ai对话接口模块"])
__all__ = ["ai_api_router"]