Skip to content

Commit a6d0e29

Browse files
authored
fix(openresponses): do not omit required field ORItemParam.Arguments (#9074)
See #9047
1 parent 6054d2a commit a6d0e29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/schema/openresponses.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ type ORItemParam struct {
9696
// Function call fields
9797
CallID string `json:"call_id,omitempty"`
9898
Name string `json:"name,omitempty"`
99-
Arguments string `json:"arguments,omitempty"`
99+
Arguments string `json:"arguments"`
100100

101101
// Function call output fields
102102
Output interface{} `json:"output,omitempty"` // string or []ORContentPart

0 commit comments

Comments
 (0)