Spaces:
Running
Running
Enabled verbose error reporting
#6
by
n1ck007007
- opened
Description
This PR enables verbose error reporting in the Gradio app by setting show_error=True
in launch()
. This will help diagnose issues by displaying detailed error messages instead of a generic exception.
Reason for the Change
Currently, when an error occurs, the app only shows a generic message:
"The upstream Gradio app has raised an exception but has not enabled verbose error reporting."
By enabling show_error=True
, we can get more insight into the issue and debug it more effectively.
Changes Made
- Updated the
launch()
function to includeshow_error=True
.