Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -82,8 +82,15 @@ def generate_audio(prompt, seconds_total=30, steps=100, cfg_scale=7):
|
|
| 82 |
# Return the path to the generated audio file
|
| 83 |
return unique_filename
|
| 84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
# Setting up the Gradio Interface
|
| 86 |
-
interface = gr.Interface(
|
| 87 |
fn=generate_audio,
|
| 88 |
inputs=[
|
| 89 |
gr.Textbox(label="Prompt", placeholder="Enter your text prompt here"),
|
|
|
|
| 82 |
# Return the path to the generated audio file
|
| 83 |
return unique_filename
|
| 84 |
|
| 85 |
+
css = """
|
| 86 |
+
footer {
|
| 87 |
+
visibility: hidden;
|
| 88 |
+
}
|
| 89 |
+
"""
|
| 90 |
+
|
| 91 |
+
|
| 92 |
# Setting up the Gradio Interface
|
| 93 |
+
interface = gr.Interface(theme="Nymbo/Nymbo_Theme", css=css,
|
| 94 |
fn=generate_audio,
|
| 95 |
inputs=[
|
| 96 |
gr.Textbox(label="Prompt", placeholder="Enter your text prompt here"),
|