Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -34,5 +34,8 @@ demo = gr.Interface(
|
|
| 34 |
description="Upload a reference voice, give reference and generation text, and hear it in the same voice!",
|
| 35 |
)
|
| 36 |
|
|
|
|
|
|
|
|
|
|
| 37 |
if __name__ == "__main__":
|
| 38 |
-
|
|
|
|
| 34 |
description="Upload a reference voice, give reference and generation text, and hear it in the same voice!",
|
| 35 |
)
|
| 36 |
|
| 37 |
+
# Hugging Face Spaces entry point
|
| 38 |
+
from gradio_app import app
|
| 39 |
+
|
| 40 |
if __name__ == "__main__":
|
| 41 |
+
app.launch()
|