Skip to content

Commit

Permalink
retry_message can be none
Browse files Browse the repository at this point in the history
  • Loading branch information
aorwall committed Jul 31, 2024
1 parent 7e6bd35 commit c46065a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moatless/trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

class TrajectoryAction(BaseModel):
action: ActionRequest
trigger: Optional[str]
retry_message: Optional[str]
trigger: Optional[str] = None
retry_message: Optional[str] = None
completion_cost: Optional[float] = None
input_tokens: Optional[int] = None
output_tokens: Optional[int] = None
Expand Down

0 comments on commit c46065a

Please sign in to comment.