diff --git a/video-gen-api/app/services/generation_ai_service.py b/video-gen-api/app/services/generation_ai_service.py index b1df03df..4be91153 100644 --- a/video-gen-api/app/services/generation_ai_service.py +++ b/video-gen-api/app/services/generation_ai_service.py @@ -200,6 +200,8 @@ async def list_generation_ai_engine_options(db: AsyncSession) -> GenerationAIEng supported_durations=_parse_list(engine.supported_durations, []), max_duration=engine.max_duration, priority=engine.priority or 0, + max_image_count=engine.max_image_count, + max_video_count=engine.max_video_count, ) for engine in video_result.scalars().all() ]