Update app.py
Browse files
app.py
CHANGED
@@ -18,5 +18,6 @@ def launch(input):
|
|
18 |
|
19 |
description = "Simple BLIP test app for image captioning."
|
20 |
|
21 |
-
iface = gr.Interface(launch, description=description,
|
|
|
22 |
iface.launch()
|
|
|
18 |
|
19 |
description = "Simple BLIP test app for image captioning."
|
20 |
|
21 |
+
iface = gr.Interface(launch, description=description, outputs="text")
|
22 |
+
gr.inputs.File(file_count="multiple")
|
23 |
iface.launch()
|