Spaces:
Sleeping
Sleeping
Joshua
commited on
Commit
•
d649908
1
Parent(s):
08af069
Updated greet message
Browse files- .app.py.swp +0 -0
- app.py +1 -1
.app.py.swp
ADDED
Binary file (12.3 kB). View file
|
|
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def greet(name):
|
4 |
-
return "
|
5 |
|
6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def greet(name):
|
4 |
+
return "What's up " + name + "!!"
|
5 |
|
6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
iface.launch()
|