@@ -136,9 +136,9 @@ type AtomicOutput struct {
136136 ThreadId string `json:"thread_id"` // Thread the assistant ran
137137 RunId string `json:"run_id"` // Run ID for the thread
138138 ToolCallID string `json:"tool_call_id,omitempty"` // Result inside the run
139-
140- ResponseId string `json:"response_id,omitempty"` // Response ID
141- ConversationId string `json:"conversation_id,omitempty"` // Conversation ID
139+
140+ ResponseId string `json:"response_id,omitempty"` // Response ID
141+ ConversationId string `json:"conversation_id,omitempty"` // Conversation ID
142142}
143143
144144type ExecutionRequestWrapper struct {
@@ -1666,8 +1666,8 @@ type Notification struct {
16661666 Ignored bool `json:"ignored" datastore:"ignored"`
16671667 ExecutionId string `json:"execution_id" datastore:"execution_id"`
16681668
1669- Severity string `json:"severity" datastore:"severity"`
1670- Origin string `json:"origin" datastore:"origin"`
1669+ Severity string `json:"severity" datastore:"severity"`
1670+ Origin string `json:"origin" datastore:"origin"`
16711671}
16721672
16731673type NotificationCached struct {
@@ -3999,12 +3999,12 @@ type SchemalessOutput struct {
39993999 Status int `json:"status,omitempty"`
40004000 URL string `json:"url,omitempty"`
40014001
4002- // Optional
4003- RawResponse interface {} `json:"raw_response ,omitempty"`
4002+ // JSON output. Or not? What if it's a list?
4003+ Output interface {} `json:"output ,omitempty"`
40044004
4005- // JSON output. What if it's a list?
4006- //Output map[string] interface{} `json:"output "`
4007- Output interface {} `json:"output "`
4005+ // Optional. Used for error handling.
4006+ RawResponse interface {} `json:"raw_response,omitempty "`
4007+ Retries int `json:"retries,omitempty "`
40084008}
40094009
40104010type CategoryActionFieldOverride struct {
@@ -4804,4 +4804,4 @@ type StreamData struct {
48044804 Type string `json:"type"` // "chunk", "done", "error"
48054805 Chunk string `json:"chunk,omitempty"`
48064806 Data string `json:"data,omitempty"` // For the final ID or error
4807- }
4807+ }
0 commit comments