Keep hitting 500 Internal server error when trying to launch gradio app in Spaces

I think your problem is called the Tonic’s 500 error. By the way, there’s nothing wrong with Tonic. In short, it’s a bug caused by the Server Side Rendering (SSR) used in Gradio 5. In many cases, you can get around it by setting ssr_mode=False. Alternatively, you can revert to Gradio 4.44.1 or earlier.

#demo.launch(share=True, auth=("username", "password"))
demo.launch(share=True, auth=("username", "password"), ssr_mode=False)
2 Likes