Spaces:
Running
on
Zero
Running
on
Zero
Set Gradio allowed paths for static directory
Browse files
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):
|