Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -123,7 +123,7 @@ with demo:
|
|
123 |
|
124 |
|
125 |
|
126 |
-
zip_captions_btn.click(fn=gr_process, inputs=zip_files, outputs=output_zip_file)
|
127 |
-
image_captions_btn.click(fn=gr_process, inputs=image_files, outputs=output_image_file)
|
128 |
|
129 |
demo.launch(share=True)
|
|
|
123 |
|
124 |
|
125 |
|
126 |
+
zip_captions_btn.click(fn=gr_process, inputs=[zip_files], outputs=output_zip_file)
|
127 |
+
image_captions_btn.click(fn=gr_process, inputs=[image_files], outputs=output_image_file)
|
128 |
|
129 |
demo.launch(share=True)
|