wfranco commited on
Commit
96f46f4
·
1 Parent(s): 1d37909

update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
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()