Ahsen Khaliq commited on
Commit
5c74399
1 Parent(s): 549441e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -1,7 +1,5 @@
1
  import os
2
- os.system("pip install gradio==2.5.3")
3
  import gradio as gr
4
- import os
5
  from pathlib import Path
6
  os.system("pip install gsutil")
7
 
@@ -289,5 +287,6 @@ gr.Interface(
289
  description=description,
290
  article=article,
291
  examples=examples,
292
- enable_queue=True
293
- ).launch()
 
1
  import os
 
2
  import gradio as gr
 
3
  from pathlib import Path
4
  os.system("pip install gsutil")
5
 
287
  description=description,
288
  article=article,
289
  examples=examples,
290
+ allow_flagging="never",
291
+ allow_screenshot=False
292
+ ).launch(enable_queue=True,cache_examples=True)