Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -190,12 +190,12 @@ with gr.Blocks(css = css) as app:
|
|
190 |
answer = gr.TextArea(label="Answer")
|
191 |
|
192 |
|
193 |
-
btn.click(gradio_predict, inputs=[image,
|
194 |
|
195 |
gr.Examples(
|
196 |
examples=test_examples,
|
197 |
inputs=[video,image, question],
|
198 |
-
outputs=
|
199 |
fn=gradio_predict,
|
200 |
cache_examples=True,
|
201 |
)
|
|
|
190 |
answer = gr.TextArea(label="Answer")
|
191 |
|
192 |
|
193 |
+
btn.click(gradio_predict, inputs=[video,image, question], outputs=answer)
|
194 |
|
195 |
gr.Examples(
|
196 |
examples=test_examples,
|
197 |
inputs=[video,image, question],
|
198 |
+
outputs= answer,
|
199 |
fn=gradio_predict,
|
200 |
cache_examples=True,
|
201 |
)
|