Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from huggingface_hub import snapshot_download, upload_folder
|
| 2 |
+
|
| 3 |
+
# ุงุณุญุจ ู
ู ุงูุฑูุจู ุงููุจูุฑ
|
| 4 |
+
src_path = snapshot_download("Xerror/XTTS-v2_models")
|
| 5 |
+
|
| 6 |
+
# ุงุฑูุน ุฅูู ูุฐุง ุงูู Space ููุณู
|
| 7 |
+
upload_folder(
|
| 8 |
+
repo_id="mohmmed5787/xtts-storage",
|
| 9 |
+
folder_path=src_path,
|
| 10 |
+
repo_type="space"
|
| 11 |
+
)
|
| 12 |
+
|
| 13 |
+
print("DONE")
|