(model string, messages []any, stream bool)
| 57 | } |
| 58 | |
| 59 | func (*responsesProvider) buildRequestBody(model string, messages []any, stream bool) map[string]any { |
| 60 | return map[string]any{ |
| 61 | "model": model, |
| 62 | "input": messages, |
| 63 | "stream": stream, |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | type chatCompletionsProvider struct{} |
| 68 |
no outgoing calls
no test coverage detected