Spaces:
Runtime error
Runtime error
Mario Namtao Shianti Larcher
commited on
Commit
•
4884eb3
1
Parent(s):
ecb8582
Fix bug: missing outputs
Browse files
app.py
CHANGED
@@ -5,5 +5,5 @@ def greet(name):
|
|
5 |
return "Hello" + name + "!!"
|
6 |
|
7 |
|
8 |
-
iface = gr.Interface(fn=greet, inputs="text")
|
9 |
iface.launch()
|
|
|
5 |
return "Hello" + name + "!!"
|
6 |
|
7 |
|
8 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
9 |
iface.launch()
|