| 1 | import { parseSSE } from '../client/stream'; |
| 2 | |
| 3 | interface SseAudioPayload { |
| 4 | data?: { audio?: string; status?: number }; |
| 5 | } |
| 6 | |
| 7 | export async function pipeAudioStream(response: Response): Promise<void> { |
| 8 | process.stdout.on('error', (err: NodeJS.ErrnoException) => { |
nothing calls this directly
no outgoing calls
no test coverage detected