| 43 | } |
| 44 | |
| 45 | type OpenAIResponse struct { |
| 46 | ID string `json:"id"` |
| 47 | Object string `json:"object"` |
| 48 | Created int64 `json:"created"` |
| 49 | Model string `json:"model"` |
| 50 | Choices []OpenAIChoice `json:"choices"` |
| 51 | } |
| 52 | |
| 53 | type OpenAIChoice struct { |
| 54 | Message Message `json:"message"` |
nothing calls this directly
no outgoing calls
no test coverage detected