Update app.py
Browse files
app.py
CHANGED
@@ -92,6 +92,16 @@ with gr.Blocks(theme=gr.themes.Base()) as demo:
|
|
92 |
|
93 |
with gr.Column(scale=2):
|
94 |
results_gallery = gr.Gallery(label="Search Results", columns=3)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
def update_search_input(choice):
|
97 |
return gr.update(visible=choice=="Text"), gr.update(visible=choice=="Image")
|
|
|
92 |
|
93 |
with gr.Column(scale=2):
|
94 |
results_gallery = gr.Gallery(label="Search Results", columns=3)
|
95 |
+
|
96 |
+
gr.Examples(
|
97 |
+
examples=[
|
98 |
+
["bangkok.mp4"],
|
99 |
+
["lotr.mp4"],
|
100 |
+
["mi.mp4"],
|
101 |
+
],
|
102 |
+
inputs=[video_file],
|
103 |
+
fn=process_video
|
104 |
+
)
|
105 |
|
106 |
def update_search_input(choice):
|
107 |
return gr.update(visible=choice=="Text"), gr.update(visible=choice=="Image")
|