fix(fastapi): makes outline notes optional
This commit is contained in:
parent
aa0a04e113
commit
011e669cd2
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue