Spaces:
Runtime error
Runtime error
Try new input
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def greet(name):
|
4 |
-
return "
|
5 |
|
6 |
-
demo = gr.Interface(fn=greet, inputs="
|
7 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def greet(name):
|
4 |
+
return "Hi " + name + "!!"
|
5 |
|
6 |
+
demo = gr.Interface(fn=greet, inputs="sketchpad", outputs="label")
|
7 |
demo.launch()
|