Spaces:
Running
Running
fix
Browse files- .ipynb_checkpoints/app-checkpoint.py +2 -2
- app.py +2 -2
.ipynb_checkpoints/app-checkpoint.py
CHANGED
@@ -5,8 +5,8 @@ anvil.server.connect('55MH4EBKM22EP4E6D5T6CVSL-VGO5X4SM6JEXGJVT')
|
|
5 |
|
6 |
@anvil.server.callable
|
7 |
def greet(name):
|
8 |
-
|
9 |
-
|
10 |
|
11 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
12 |
iface.launch()
|
|
|
5 |
|
6 |
@anvil.server.callable
|
7 |
def greet(name):
|
8 |
+
return 'Hello World ' + name
|
9 |
+
|
10 |
|
11 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
12 |
iface.launch()
|
app.py
CHANGED
@@ -5,8 +5,8 @@ anvil.server.connect('55MH4EBKM22EP4E6D5T6CVSL-VGO5X4SM6JEXGJVT')
|
|
5 |
|
6 |
@anvil.server.callable
|
7 |
def greet(name):
|
8 |
-
|
9 |
-
|
10 |
|
11 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
12 |
iface.launch()
|
|
|
5 |
|
6 |
@anvil.server.callable
|
7 |
def greet(name):
|
8 |
+
return 'Hello World ' + name
|
9 |
+
|
10 |
|
11 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
12 |
iface.launch()
|