@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.
@@ -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) {