MaxMilan1
commited on
Commit
·
b684483
1
Parent(s):
9dfb708
klg
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ with gr.Blocks(_TITLE) as ShoeGen:
|
|
25 |
button_gen = gr.Button("Generate Image")
|
26 |
with gr.Column():
|
27 |
# show images
|
28 |
-
|
29 |
|
30 |
|
31 |
button_gen.click(generate_image, inputs=[prompt], outputs=image)
|
|
|
25 |
button_gen = gr.Button("Generate Image")
|
26 |
with gr.Column():
|
27 |
# show images
|
28 |
+
image = gr.Image(label="Generated Image", show_download_button=True)
|
29 |
|
30 |
|
31 |
button_gen.click(generate_image, inputs=[prompt], outputs=image)
|