TTS / app.py
Hassan-16's picture
Update app.py
46e6d63 verified
raw
history blame
193 Bytes
import os
zip_path = "model/kokoro-v1_0.zip"
if not os.path.exists(zip_path):
raise FileNotFoundError(f"ZIP file not found at {zip_path}")
else:
print(f"ZIP file found at {zip_path}")