Spaces:
Runtime error
Runtime error
Fixes 500 error for some users (#1)
Browse files- Fixes 500 error for some users (df430c1910e08c11c20f0ee925da9a2f6cab1aba)
Co-authored-by: Joseph [open/acc] Pollack <Tonic@users.noreply.huggingface.co>
app.py
CHANGED
|
@@ -700,7 +700,7 @@ def main(args):
|
|
| 700 |
#################### Gradio Interface ####################
|
| 701 |
|
| 702 |
# Launch the Gradio app
|
| 703 |
-
demo.launch()
|
| 704 |
|
| 705 |
|
| 706 |
if __name__ == "__main__":
|
|
|
|
| 700 |
#################### Gradio Interface ####################
|
| 701 |
|
| 702 |
# Launch the Gradio app
|
| 703 |
+
demo.launch(ssr_mode=False)
|
| 704 |
|
| 705 |
|
| 706 |
if __name__ == "__main__":
|