Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -204,13 +204,13 @@ def gradio_worker(
|
|
204 |
with gr.Column(scale=1):
|
205 |
with gr.Tab('Image') as img_tab:
|
206 |
img_path = gr.Image(label='Image Input', type='filepath')
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
with gr.Tab('Video') as video_tab:
|
215 |
video_path = gr.Video(label='Video Input')
|
216 |
# gr.Examples(
|
|
|
204 |
with gr.Column(scale=1):
|
205 |
with gr.Tab('Image') as img_tab:
|
206 |
img_path = gr.Image(label='Image Input', type='filepath')
|
207 |
+
gr.Examples(
|
208 |
+
examples=[
|
209 |
+
["examples/animal.png", "Why this image is funny?"],
|
210 |
+
["examples/food_menu.png", "Introduce me the poster."],
|
211 |
+
],
|
212 |
+
inputs=[img_path, msg],
|
213 |
+
)
|
214 |
with gr.Tab('Video') as video_tab:
|
215 |
video_path = gr.Video(label='Video Input')
|
216 |
# gr.Examples(
|