| 14 | } |
| 15 | |
| 16 | type OpenAIStreamResponse struct { |
| 17 | ID string `json:"id"` |
| 18 | Object string `json:"object"` |
| 19 | Created int64 `json:"created"` |
| 20 | Model string `json:"model"` |
| 21 | Choices []Choice `json:"choices"` |
| 22 | } |
| 23 | |
| 24 | type Choice struct { |
| 25 | Delta Delta `json:"delta"` |
nothing calls this directly
no outgoing calls
no test coverage detected