Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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()
|