We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fd904c commit 9efad28Copy full SHA for 9efad28
run.go
@@ -142,17 +142,13 @@ const (
142
type StepDetails struct {
143
Type RunStepType `json:"type"`
144
MessageCreation *StepDetailsMessageCreation `json:"message_creation,omitempty"`
145
- ToolCalls *StepDetailsToolCalls `json:"tool_calls,omitempty"`
+ ToolCalls []ToolCall `json:"tool_calls,omitempty"`
146
}
147
148
type StepDetailsMessageCreation struct {
149
MessageID string `json:"message_id"`
150
151
152
-type StepDetailsToolCalls struct {
153
- ToolCalls []ToolCall `json:"tool_calls"`
154
-}
155
-
156
// RunStepList is a list of steps.
157
type RunStepList struct {
158
RunSteps []RunStep `json:"data"`
0 commit comments