m7n commited on
Commit
c85ae94
·
1 Parent(s): 447fa92

Set Gradio allowed paths for static directory

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -11,6 +11,8 @@ from spaces.zero.client import _get_token
11
  # create a static directory to store the static files
12
  static_dir = Path('./static')
13
  static_dir.mkdir(parents=True, exist_ok=True)
 
 
14
 
15
  @spaces.GPU(duration=10)
16
  def predict(request: gr.Request,text_input):
 
11
  # create a static directory to store the static files
12
  static_dir = Path('./static')
13
  static_dir.mkdir(parents=True, exist_ok=True)
14
+ os.environ["GRADIO_ALLOWED_PATHS"] = str(static_dir.resolve())
15
+
16
 
17
  @spaces.GPU(duration=10)
18
  def predict(request: gr.Request,text_input):