Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) ends with status `incomplete`.
| 950 | // Occurs when a [run](https://platform.openai.com/docs/api-reference/runs/object) |
| 951 | // ends with status `incomplete`. |
| 952 | type AssistantStreamEventThreadRunIncomplete struct { |
| 953 | // Represents an execution run on a |
| 954 | // [thread](https://platform.openai.com/docs/api-reference/threads). |
| 955 | Data Run `json:"data" api:"required"` |
| 956 | Event constant.ThreadRunIncomplete `json:"event" default:"thread.run.incomplete"` |
| 957 | // JSON contains metadata for fields, check presence with [respjson.Field.Valid]. |
| 958 | JSON struct { |
| 959 | Data respjson.Field |
| 960 | Event respjson.Field |
| 961 | ExtraFields map[string]respjson.Field |
| 962 | raw string |
| 963 | } `json:"-"` |
| 964 | } |
| 965 | |
| 966 | // Returns the unmodified JSON received from the API |
| 967 | func (r AssistantStreamEventThreadRunIncomplete) RawJSON() string { return r.JSON.raw } |
nothing calls this directly
no outgoing calls
no test coverage detected