Spaces:
Build error
Build error
Commit ·
c61fa51
1
Parent(s): 613915a
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,5 +3,12 @@ import gradio as gr
|
|
| 3 |
def greet(name):
|
| 4 |
return "Hello " + name + "!!"
|
| 5 |
|
|
|
|
|
|
|
|
|
|
| 6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 7 |
-
iface.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
def greet(name):
|
| 4 |
return "Hello " + name + "!!"
|
| 5 |
|
| 6 |
+
def greet2(name):
|
| 7 |
+
return "Hello " + name + "!!"
|
| 8 |
+
|
| 9 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 10 |
+
iface.launch()
|
| 11 |
+
|
| 12 |
+
iface2 = gr.Interface(fn=greet2, inputs="text", outputs="text")
|
| 13 |
+
iface2.launch()
|
| 14 |
+
|