fix(fastapi): makes outline notes optional

This commit is contained in:
sauravniraula 2025-07-26 04:07:57 +05:45
parent aa0a04e113
commit 011e669cd2
No known key found for this signature in database
GPG key ID: 60FCC1B5A5E83326

View file

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