Allow null input in StepRequestBody for Continuous Chat Mode

pull/5164/head
hunteraraujo 2023-09-06 10:02:13 -07:00
parent c056780c64
commit e56a2b1f41
1 changed files with 1 additions and 1 deletions
forge/autogpt/sdk

View File

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