Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def greet(
|
| 4 |
-
return
|
| 5 |
|
| 6 |
demo = gr.Interface(fn=greet, inputs="image", outputs="image")
|
| 7 |
demo.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
def greet(imagen):
|
| 4 |
+
return imagen
|
| 5 |
|
| 6 |
demo = gr.Interface(fn=greet, inputs="image", outputs="image")
|
| 7 |
demo.launch()
|