Update app.py
Browse files
app.py
CHANGED
@@ -11,5 +11,6 @@ demo = gr.Interface(
|
|
11 |
fn=predict,
|
12 |
inputs=[gr.inputs.Textbox(label="Text"), gr.inputs.Textbox(label="Name")],
|
13 |
outputs=gr.outputs.Textbox(),
|
|
|
14 |
)
|
15 |
demo.launch()
|
|
|
11 |
fn=predict,
|
12 |
inputs=[gr.inputs.Textbox(label="Text"), gr.inputs.Textbox(label="Name")],
|
13 |
outputs=gr.outputs.Textbox(),
|
14 |
+
allow_sandbox_access=False, # Disable the sandbox access
|
15 |
)
|
16 |
demo.launch()
|