移除提词fps参数

This commit is contained in:
2026-07-22 12:10:54 +08:00
parent def054c147
commit b41e1d6607
3 changed files with 3 additions and 5 deletions
@@ -68,7 +68,7 @@ async def _build_user_content(record: ChatGenerationTask, db: AsyncSession | Non
if ref_type == "image":
parts.append({"type": "image_url", "image_url": {"url": url}})
elif ref_type == "video":
parts.append({"type": "video_url", "video_url": {"url": url, "fps": settings.CHATAPI_VIDEO_FPS}})
parts.append({"type": "video_url", "video_url": {"url": url}})
return parts