Spaces:
Running
Running
Enable show_error so runtime exceptions surface in the UI
Browse files
app.py
CHANGED
|
@@ -549,4 +549,4 @@ with gr.Blocks(title="Play ChessMamba") as demo:
|
|
| 549 |
undo_btn.click(undo, inputs=[history, side_radio, top_k], outputs=OUT)
|
| 550 |
|
| 551 |
if __name__ == "__main__":
|
| 552 |
-
demo.launch(mcp_server=True, theme=gr.themes.Citrus(), css=CSS)
|
|
|
|
| 549 |
undo_btn.click(undo, inputs=[history, side_radio, top_k], outputs=OUT)
|
| 550 |
|
| 551 |
if __name__ == "__main__":
|
| 552 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus(), css=CSS, show_error=True)
|