(res: Response, data: OpenAIChatCompletionChunk)
| 1281 | } |
| 1282 | |
| 1283 | function writeOpenAISSE(res: Response, data: OpenAIChatCompletionChunk): void { |
| 1284 | res.write(`data: ${JSON.stringify(data)}\n\n`); |
| 1285 | if (typeof (res as unknown as { flush: () => void }).flush === 'function') { |
| 1286 | (res as unknown as { flush: () => void }).flush(); |
| 1287 | } |
| 1288 | } |
| 1289 | |
| 1290 | // ==================== /v1/responses 支持 ==================== |
| 1291 |
no test coverage detected