- Fix TTS text pipeline: new caps handling (spell out unknown acronyms, lowercase emphasis words), action-word lookahead for parenthetical stripping, abbreviation expansions (US→United States, NM→New Mexico), pronunciation fixes - Inworld TTS: camelCase API fields, speakingRate per-voice overrides, retry logic with exponential backoff (3 attempts) - Footer redesign: SVG icons for social/podcast links across all pages - Stats page: show "Rate us on Spotify" instead of "not public" placeholder - New voices, expanded caller prompts and problem scenarios - Social posting via Postiz, YouTube upload in publish pipeline - Episode transcripts 15-25, terms page, sitemap updates - Fix invoice script: match Timing totals using merged Task+App intervals Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
62 lines
640 B
Plaintext
62 lines
640 B
Plaintext
# Environment
|
|
.env
|
|
*.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
|
|
# Audio/Media (large files)
|
|
*.mp3
|
|
*.wav
|
|
*.m4a
|
|
*.ogg
|
|
|
|
# Sessions
|
|
sessions/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Whisper models (downloaded automatically)
|
|
*.pt
|
|
|
|
# Temporary
|
|
*.tmp
|
|
*.log
|
|
|
|
# Large model files (download separately)
|
|
*.onnx
|
|
*.safetensors
|
|
*.tar.bz2
|
|
*.bin
|
|
models/
|
|
asset/
|
|
kokoro-v1.0.onnx
|
|
voices-v1.0.bin
|
|
|
|
# Reference voices for TTS
|
|
ref_audio/
|
|
|
|
# YouTube OAuth credentials
|
|
youtube_client_secrets.json
|
|
youtube_token.json
|
|
|
|
# Clip upload history (local)
|
|
upload-history.json
|
|
|
|
# Claude settings (local)
|
|
.claude/
|