Spaces:
Build error
Build error
Commit
·
64150cb
1
Parent(s):
8b4dd82
Update app.py
Browse files
app.py
CHANGED
|
@@ -28,6 +28,6 @@ def greet(name):
|
|
| 28 |
return image_pil
|
| 29 |
#return "Gello " + prompt + "!!"
|
| 30 |
|
| 31 |
-
image = gr.
|
| 32 |
iface = gr.Interface(fn=greet, inputs="text", outputs=[image,gr.outputs.Carousel(label="Individual images",components=["image"]),gr.outputs.Textbox(label="Error")])
|
| 33 |
iface.launch()
|
|
|
|
| 28 |
return image_pil
|
| 29 |
#return "Gello " + prompt + "!!"
|
| 30 |
|
| 31 |
+
image = gr.Image(type="pil", label="Your result")
|
| 32 |
iface = gr.Interface(fn=greet, inputs="text", outputs=[image,gr.outputs.Carousel(label="Individual images",components=["image"]),gr.outputs.Textbox(label="Error")])
|
| 33 |
iface.launch()
|