azamat commited on
Commit
e04eb7c
·
1 Parent(s): 617b57b

Add self-explanatory fields

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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 = "Write down a search query, question or a topic and receive top-5 most relevant short video-answers. The most relevant clip will be displayed in the widget and the whole list will be available in another widget as a list of titles, links to Google Drive."
31
 
32
  input_text = gr.Textbox(placeholder = "Your query, question, topic, ...", label = "Query")
33
 
34
- output_text = gr.Textbox(label = "Relevant clips")
 
35
 
36
  iface = gr.Interface(fn=search,
37
  inputs=input_text,
38
- outputs=["playable_video", output_text],
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()