Spaces:
Sleeping
Sleeping
Add self-explanatory fields
Browse files
app.py
CHANGED
@@ -27,15 +27,16 @@ def search(query):
|
|
27 |
return video_path, "\n\n".join([f"{r['title']}\n{r['link']}" for r in shorts])
|
28 |
|
29 |
title = "Slideo Explorer: Your AI-based short video search engine"
|
30 |
-
description = "
|
31 |
|
32 |
input_text = gr.Textbox(placeholder = "Your query, question, topic, ...", label = "Query")
|
33 |
|
34 |
-
|
|
|
35 |
|
36 |
iface = gr.Interface(fn=search,
|
37 |
inputs=input_text,
|
38 |
-
outputs=[
|
39 |
title=title,
|
40 |
description=description)
|
41 |
iface.launch()
|
|
|
27 |
return video_path, "\n\n".join([f"{r['title']}\n{r['link']}" for r in shorts])
|
28 |
|
29 |
title = "Slideo Explorer: Your AI-based short video search engine"
|
30 |
+
description = "Enter a search query, question or topic to receive the top 5 most relevant short video answers. The most relevant clip will be displayed separately, and it will also be included in the list of top 5 video titles with links to Google Drive."
|
31 |
|
32 |
input_text = gr.Textbox(placeholder = "Your query, question, topic, ...", label = "Query")
|
33 |
|
34 |
+
video = gr.Video(label = "Most relevant clip")
|
35 |
+
output_text = gr.Textbox(label = "Top-5 relevants clips")
|
36 |
|
37 |
iface = gr.Interface(fn=search,
|
38 |
inputs=input_text,
|
39 |
+
outputs=[video, output_text],
|
40 |
title=title,
|
41 |
description=description)
|
42 |
iface.launch()
|