/** * Stream an LLM and forward token deltas through the duplex TTS path (`textToSpeechStream` → * `runStreaming` with `accumulateSentences: true`). Text is filtered before TTS / console: any * `<...>` span (including across tokens) is removed, and `*` characters are stripped. * * Each synthesized phrase is played as soon as PCM arrives (`playPcmInt16Chunk`). A combined WAV * is written at the end for inspection. * * Prerequisites: Bun, QVAC worker, registry access, macOS `afplay` / Linux `aplay` (or Windows * PowerShell player) for chunk playback. * * Usage: * bun run examples/tts/llm-to-tts-streaming.ts */ export {}; //# sourceMappingURL=llm-to-tts-streaming.d.ts.map