STT (Silero VAD + Whisper via sherpa-onnx), Chatterbox TTS HTTP server, query completeness classifier (Ollama), multi-voice demo scripts, and planning docs. Kept as reference; clean rewrite planned in separate repos. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25 lines
932 B
Bash
Executable File
25 lines
932 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Wrong Meeting — Harold W. Smith, Ivanova, Archangel, Rommie, Penny Parker
|
|
|
|
TTS="${TTS_URL:-http://192.168.2.99:11500}"
|
|
switch() { curl -s -X POST "$TTS/voice" -H 'Content-Type: application/json' -d "{\"name\": \"$1\"}" > /dev/null; }
|
|
say() { curl -s -X POST "$TTS/speak" -H 'Content-Type: application/json' -d "$(jq -n --arg t "$1" '{text:$t}')" > /dev/null; }
|
|
|
|
switch harold-w-smith
|
|
say "This meeting never happened. None of you are here, and neither am I."
|
|
|
|
switch ivanova
|
|
say "That's extremely reassuring. Last time someone said that to me, a space station blew up."
|
|
|
|
switch archangel
|
|
say "Technically it was a controlled demolition. The paperwork was filed in triplicate."
|
|
|
|
switch rommie
|
|
say "I have reviewed the paperwork. It was filed AFTER the explosion."
|
|
|
|
switch penny-parker
|
|
say "You know, I walked into the wrong building again, didn't I."
|
|
|
|
switch harold-w-smith
|
|
say "Yes. But you saw nothing."
|