| 56 | } |
| 57 | |
| 58 | type ChatCompletionsStreamResponse struct { |
| 59 | Id string `json:"id"` |
| 60 | Object string `json:"object"` |
| 61 | Created interface{} `json:"created"` |
| 62 | Model string `json:"model"` |
| 63 | Choices []ChatCompletionsStreamResponseChoice `json:"choices"` |
| 64 | } |
| 65 | |
| 66 | type ChatCompletionsStreamResponseChoice struct { |
| 67 | Index int `json:"index"` |
nothing calls this directly
no outgoing calls
no test coverage detected