azamat commited on
Commit
c48e089
·
1 Parent(s): e19a91f

Added queue

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -35,7 +35,7 @@ def search(query):
35
 
36
  return video_path, "\n\n".join([f"- [{r['title']}]({r['link']})" for r in shorts])
37
 
38
- title = "Slideo Explorer: Your AI-based short video search engine"
39
  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."
40
 
41
  input_text = gr.Textbox(placeholder = "Your query, question, topic, ...", label = "Query")
@@ -49,6 +49,7 @@ iface = gr.Interface(fn=search,
49
  title=title,
50
  description=description,
51
  examples=[[e] for e in examples],
52
- cache_examples="lazy")
 
53
 
54
  iface.launch(auth=(os.getenv("username"), os.getenv("password")))
 
35
 
36
  return video_path, "\n\n".join([f"- [{r['title']}]({r['link']})" for r in shorts])
37
 
38
+ title = "Slideo Explorer: Your AI-based short video search engine based on @YCombinator"
39
  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."
40
 
41
  input_text = gr.Textbox(placeholder = "Your query, question, topic, ...", label = "Query")
 
49
  title=title,
50
  description=description,
51
  examples=[[e] for e in examples],
52
+ cache_examples="lazy",
53
+ queue=True)
54
 
55
  iface.launch(auth=(os.getenv("username"), os.getenv("password")))