Spaces:
Runtime error
Runtime error
Update app.py
#1
by MelikeErdogan - opened
app.py
CHANGED
|
@@ -1,14 +1,9 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
def greet(name):
|
| 4 |
-
return "Hello " + name + "!
|
| 5 |
|
| 6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 7 |
iface.launch()
|
| 8 |
|
| 9 |
|
| 10 |
-
def greeting(name):
|
| 11 |
-
return "Welcome" + name + "!!"
|
| 12 |
-
|
| 13 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 14 |
-
iface.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
def greet(name):
|
| 4 |
+
return "Hello " + name + "Welcome!"
|
| 5 |
|
| 6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 7 |
iface.launch()
|
| 8 |
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|