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

Add markdown to output

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -24,7 +24,7 @@ def search(query):
24
  download_url = f"https://drive.google.com/uc?id={shorts[0]['link'].split('/')[-2]}"
25
  video_path = gdown.download(download_url, output=f"./video.mp4")
26
 
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."
@@ -32,7 +32,7 @@ description = "Enter a search query, question or topic to receive the top 5 most
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,
 
24
  download_url = f"https://drive.google.com/uc?id={shorts[0]['link'].split('/')[-2]}"
25
  video_path = gdown.download(download_url, output=f"./video.mp4")
26
 
27
+ return video_path, "\n\n".join([f"- [{r['title']}]({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."
 
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.Markdown(label = "Top-5 relevants clips")
36
 
37
  iface = gr.Interface(fn=search,
38
  inputs=input_text,