mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2026-02-21 16:37:21 +08:00
- Add gemini_tts() function with proper PCM audio handling - Support 15 Gemini voices (Zephyr, Puck, Kore, etc.) - Fix audio data format issue preventing video generation - Add Gemini TTS option to WebUI settings - Update .gitignore to exclude debug files
35 lines
555 B
Plaintext
35 lines
555 B
Plaintext
.DS_Store
|
|
/config.toml
|
|
/storage/
|
|
/.idea/
|
|
/app/services/__pycache__
|
|
/app/__pycache__/
|
|
/app/config/__pycache__/
|
|
/app/models/__pycache__/
|
|
/app/utils/__pycache__/
|
|
/*/__pycache__/*
|
|
.vscode
|
|
/**/.streamlit
|
|
__pycache__
|
|
logs/
|
|
|
|
node_modules
|
|
# VuePress 默认临时文件目录
|
|
/sites/docs/.vuepress/.temp
|
|
# VuePress 默认缓存目录
|
|
/sites/docs/.vuepress/.cache
|
|
# VuePress 默认构建生成的静态文件目录
|
|
/sites/docs/.vuepress/dist
|
|
# 模型目录
|
|
/models/
|
|
./models/*
|
|
|
|
venv/
|
|
.venv
|
|
|
|
# Debug and test files
|
|
CLAUDE.md
|
|
debug/
|
|
debug_*.py
|
|
test_*.py
|
|
streamlit.log |