Update schema.py

pull/5164/head
hunteraraujo 2023-09-06 10:09:31 -07:00
parent e56a2b1f41
commit 2883ea0abb
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class StepRequestBody(BaseModel):
name: Optional[str] = Field(
None, description="The name of the task step.", example="Write to file"
)
input: str = Field(
input: Optional[str] = Field(
None,
min_length=1,
description="Input prompt for the step.",