feat:add api interface:generate_video_script and generate_video_terms

This commit is contained in:
cathy
2024-04-04 17:21:53 +08:00
parent 53ba189c1b
commit 87a837a345
3 changed files with 94 additions and 1 deletions

View File

@@ -8,8 +8,9 @@ Resources:
"""
from fastapi import APIRouter
from app.controllers.v1 import video
from app.controllers.v1 import video, llm
root_api_router = APIRouter()
# v1
root_api_router.include_router(video.router)
root_api_router.include_router(llm.router)