Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
from requisites
|
| 3 |
|
| 4 |
def process_text(script):
|
| 5 |
"""Process text to generate an AI video."""
|
|
@@ -26,3 +26,4 @@ iface = gr.Interface(
|
|
| 26 |
# Run app
|
| 27 |
if __name__ == "__main__":
|
| 28 |
iface.launch()
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
from requisites import generate_speech, create_video
|
| 3 |
|
| 4 |
def process_text(script):
|
| 5 |
"""Process text to generate an AI video."""
|
|
|
|
| 26 |
# Run app
|
| 27 |
if __name__ == "__main__":
|
| 28 |
iface.launch()
|
| 29 |
+
|