@danhachuel/thunderbolt 0.2.19 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/MANUAL-INSTALACAO.md +22 -6
- package/README.md +24 -7
- package/app/main.py +341 -19
- package/hermes_ui/domain.py +36 -0
- package/hermes_ui/music.py +82 -0
- package/hermes_ui/storage.py +14 -1
- package/hermes_ui/voice_preview.py +119 -0
- package/integrations/platforms.py +114 -44
- package/integrations/youtube_direct_upload.py +169 -0
- package/package.json +1 -1
- package/requirements.txt +1 -0
- package/scripts/cli.mjs +3 -1
- package/scripts/install.mjs +3 -1
package/scripts/install.mjs
CHANGED
|
@@ -108,6 +108,8 @@ function ensureDirs() {
|
|
|
108
108
|
join(storageRoot, "metadata_cleaner", "outputs"),
|
|
109
109
|
join(storageRoot, "artifacts"),
|
|
110
110
|
join(storageRoot, "skills"),
|
|
111
|
+
join(storageRoot, "music"),
|
|
112
|
+
join(storageRoot, "voice_previews"),
|
|
111
113
|
];
|
|
112
114
|
for (const directory of directories) mkdirSync(directory, { recursive: true });
|
|
113
115
|
copySeedBlueprints(storageRoot);
|
|
@@ -288,7 +290,7 @@ function writeSettings(moneyprinterPath) {
|
|
|
288
290
|
|
|
289
291
|
function installThunderboltDependencies(python) {
|
|
290
292
|
if (!existsSync(pythonBin)) run(python.command, [...python.args, "-m", "venv", venvPath]);
|
|
291
|
-
installRequirementIfNeeded(join(root, "requirements.txt"), "thunderbolt_requirements_sha256", ["streamlit", "requests", "pandas", "toml", "imageio_ffmpeg", "google.auth", "google_auth_oauthlib", "googleapiclient"], "Thunderbolt");
|
|
293
|
+
installRequirementIfNeeded(join(root, "requirements.txt"), "thunderbolt_requirements_sha256", ["streamlit", "requests", "pandas", "toml", "imageio_ffmpeg", "edge_tts", "google.auth", "google_auth_oauthlib", "googleapiclient"], "Thunderbolt");
|
|
292
294
|
}
|
|
293
295
|
|
|
294
296
|
function installMoneyPrinterDependencies(moneyprinterPath) {
|