feat: switch summarizer to DeepSeek API, add cookie support for transcripts

This commit is contained in:
Gan, Jimmy
2026-06-24 00:38:13 +08:00
parent a0ffa41c9e
commit 963e9dbdf1
3 changed files with 2388 additions and 16 deletions
+5
View File
@@ -37,6 +37,11 @@ async def startup():
async def health():
return {"status": "ok"}
@app.get("/")
async def root():
from fastapi.responses import FileResponse
return FileResponse(os.path.join(frontend_build_path, "index.html"))
@app.get("/api/videos")
async def get_videos(
status: Optional[str] = "pending",