Skip to content

Commit

Permalink
Allow null input in StepRequestBody for Continuous Chat Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
hunteraraujo committed Sep 6, 2023
1 parent c056780 commit e56a2b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge/autogpt/sdk/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e56a2b1

Please sign in to comment.