Spaces:
Runtime error
Runtime error
update app.py
Browse files
app.py
CHANGED
@@ -5,4 +5,14 @@ def user_greeting(name):
|
|
5 |
|
6 |
#define gradio interface and other parameters
|
7 |
app = gra.Interface(fn = user_greeting, inputs="text", outputs="text")
|
8 |
-
app.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
#define gradio interface and other parameters
|
7 |
app = gra.Interface(fn = user_greeting, inputs="text", outputs="text")
|
8 |
+
app.launch()
|
9 |
+
|
10 |
+
demo = gr.Interface(
|
11 |
+
fn=generate_audio_func,
|
12 |
+
inputs=input_component,
|
13 |
+
outputs=output_component,
|
14 |
+
title=app_name,
|
15 |
+
description=app_description
|
16 |
+
)
|
17 |
+
|
18 |
+
demo.launch()
|