Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -13,14 +13,14 @@ def download_image(output_image):
|
|
13 |
return gradio.Interface.download(img_bytes, "output_image.png")
|
14 |
|
15 |
# define input and output interfaces
|
16 |
-
input_image = gr.inputs.Image(type="
|
17 |
-
output_image = gr.outputs.Image(type="
|
18 |
|
19 |
# define the download button
|
20 |
download_button = gr.Interface(
|
21 |
fn=download_image,
|
22 |
inputs=output_image,
|
23 |
-
outputs="
|
24 |
title="Download"
|
25 |
)
|
26 |
|
|
|
13 |
return gradio.Interface.download(img_bytes, "output_image.png")
|
14 |
|
15 |
# define input and output interfaces
|
16 |
+
input_image = gr.inputs.Image(type="file", label="Input Image")
|
17 |
+
output_image = gr.outputs.Image(type="file", label="Output Image")
|
18 |
|
19 |
# define the download button
|
20 |
download_button = gr.Interface(
|
21 |
fn=download_image,
|
22 |
inputs=output_image,
|
23 |
+
outputs="file",
|
24 |
title="Download"
|
25 |
)
|
26 |
|