Spaces:
Sleeping
Sleeping
Surya8663
commited on
Commit
·
6db3cd8
1
Parent(s):
174a26a
Add missing app.launch() command
Browse files- backend/app.py +1 -0
backend/app.py
CHANGED
|
@@ -118,3 +118,4 @@ with gr.Blocks(theme=gr.themes.Soft()) as app:
|
|
| 118 |
app.load(fn=show_history, outputs=history_df)
|
| 119 |
refresh_history_btn.click(fn=show_history, outputs=history_df)
|
| 120 |
submit_feedback_btn.click(fn=save_feedback_and_refresh, inputs=[record_id_input, feedback_label], outputs=[history_df, feedback_status])
|
|
|
|
|
|
| 118 |
app.load(fn=show_history, outputs=history_df)
|
| 119 |
refresh_history_btn.click(fn=show_history, outputs=history_df)
|
| 120 |
submit_feedback_btn.click(fn=save_feedback_and_refresh, inputs=[record_id_input, feedback_label], outputs=[history_df, feedback_status])
|
| 121 |
+
app.launch()
|