Merge pull request #87 from presenton/fix/gemini_issue

fix(fastapi): makes notes required with default to fix type null in schema issue
This commit is contained in:
Saurav Niraula 2025-07-17 07:46:31 +05:45 committed by GitHub
commit d84fbfa49a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,8 @@ def get_presentation_markdown_model_with_n_slides(n_slides: int):
min_length=10,
max_length=50,
)
notes: Optional[List[str]] = Field(
notes: List[str] = Field(
default=[],
description="Important notes for the presentation styling and formatting",
min_length=0,
max_length=10,