| 77 | } |
| 78 | |
| 79 | type Error struct { |
| 80 | Message string `json:"message"` |
| 81 | Type string `json:"type"` |
| 82 | Param string `json:"param"` |
| 83 | Code any `json:"code"` |
| 84 | } |
| 85 | |
| 86 | func ConstructChatCompletionStreamReponse(model, answerID string, answer string) openai.ChatCompletionStreamResponse { |
| 87 | resp := openai.ChatCompletionStreamResponse{ |
nothing calls this directly
no outgoing calls
no test coverage detected