jaumaras commited on
Commit
f9160b2
·
1 Parent(s): 17ddfc9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -4,6 +4,11 @@ import gradio as gr
4
 
5
  def hello_world(name):
6
  return "HEllo..." + name +"!!!!"
 
 
7
 
8
  interface = gr.Interface(fn = hello_world, inputs='text',outputs="text")
9
- interface.launch()
 
 
 
 
4
 
5
  def hello_world(name):
6
  return "HEllo..." + name +"!!!!"
7
+ def hello_world2(name):
8
+ return "HEllo..." + name +"!!!!"
9
 
10
  interface = gr.Interface(fn = hello_world, inputs='text',outputs="text")
11
+ interface.launch()
12
+
13
+ interface2 = gr.Interface(fn = hello_world2, inputs='text',outputs="text")
14
+ interface2.launch()