Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) moves to an `in_progress` status.
| 884 | // Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) |
| 885 | // moves to an `in_progress` status. |
| 886 | type AssistantStreamEventThreadRunInProgress struct { |
| 887 | // Represents an execution run on a |
| 888 | // [thread](https://platform.openai.com/docs/api-reference/threads). |
| 889 | Data Run `json:"data" api:"required"` |
| 890 | Event constant.ThreadRunInProgress `json:"event" default:"thread.run.in_progress"` |
| 891 | // JSON contains metadata for fields, check presence with [respjson.Field.Valid]. |
| 892 | JSON struct { |
| 893 | Data respjson.Field |
| 894 | Event respjson.Field |
| 895 | ExtraFields map[string]respjson.Field |
| 896 | raw string |
| 897 | } `json:"-"` |
| 898 | } |
| 899 | |
| 900 | // Returns the unmodified JSON received from the API |
| 901 | func (r AssistantStreamEventThreadRunInProgress) RawJSON() string { return r.JSON.raw } |
nothing calls this directly
no outgoing calls
no test coverage detected