Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -84,8 +84,10 @@ def generate_kids_music_animation(theme):
|
|
84 |
speech_path = generate_speech(lyrics)
|
85 |
return lyrics, video_path, speech_path
|
86 |
|
|
|
|
|
87 |
# Gradio Interface
|
88 |
-
with gr.Blocks() as app:
|
89 |
gr.Markdown("## AI-Generated Video and Audio Content (Optimized CPU Version with Groq API)")
|
90 |
|
91 |
with gr.Tab("Comedy Animation"):
|
|
|
84 |
speech_path = generate_speech(lyrics)
|
85 |
return lyrics, video_path, speech_path
|
86 |
|
87 |
+
my_theme = gr.Theme.from_hub("gradio/seafoam")
|
88 |
+
|
89 |
# Gradio Interface
|
90 |
+
with gr.Blocks(theme=my_theme) as app:
|
91 |
gr.Markdown("## AI-Generated Video and Audio Content (Optimized CPU Version with Groq API)")
|
92 |
|
93 |
with gr.Tab("Comedy Animation"):
|