Spaces:
Runtime error
Runtime error
Srinivasulu kethanaboina commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -165,8 +165,10 @@ div.progress-text.svelte-z7cif2.meta-text {display: none;}
|
|
| 165 |
'''
|
| 166 |
|
| 167 |
# Launch the Gradio interface
|
|
|
|
| 168 |
gr.ChatInterface(chat_interface,
|
| 169 |
css=css,
|
| 170 |
description="Clara",
|
| 171 |
clear_btn=None, undo_btn=None, retry_btn=None,
|
| 172 |
-
).launch()
|
|
|
|
|
|
| 165 |
'''
|
| 166 |
|
| 167 |
# Launch the Gradio interface
|
| 168 |
+
# Launch the Gradio interface with verbose error reporting
|
| 169 |
gr.ChatInterface(chat_interface,
|
| 170 |
css=css,
|
| 171 |
description="Clara",
|
| 172 |
clear_btn=None, undo_btn=None, retry_btn=None,
|
| 173 |
+
).launch(show_error=True)
|
| 174 |
+
|