Initial commit of current state

This commit is contained in:
Adolfo Reyna
2026-08-07 18:15:36 -04:00
commit 62d805e565
32 changed files with 4416 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
# Launch the local voice conversation.
#
# Python doesn't trust the corporate TLS proxy out of the box, so point its
# HTTP clients at the system CA bundle before Hugging Face and Kokoro try to
# download their models.
set -euo pipefail
HERE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
export SSL_CERT_FILE=/etc/ssl/cert.pem
export REQUESTS_CA_BUNDLE=/etc/ssl/cert.pem
exec "$HERE/.venv/bin/python" "$HERE/bot.py" "$@"