thefreeham commited on
Commit
64150cb
·
1 Parent(s): 8b4dd82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,6 +28,6 @@ def greet(name):
28
  return image_pil
29
  #return "Gello " + prompt + "!!"
30
 
31
- image = gr.outputs.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()
 
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()