| 64 | } |
| 65 | |
| 66 | type ChatCompletionsStreamResponseChoice struct { |
| 67 | Index int `json:"index"` |
| 68 | Delta struct { |
| 69 | Content string `json:"content"` |
| 70 | Role string `json:"role,omitempty"` |
| 71 | } `json:"delta"` |
| 72 | FinishReason *string `json:"finish_reason,omitempty"` |
| 73 | } |
| 74 | |
| 75 | type OpenAIError struct { |
| 76 | Error Error `json:"error"` |
nothing calls this directly
no outgoing calls
no test coverage detected