Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1162,11 +1162,12 @@ with gr.Blocks(title="Intelligent Agent with Media Processing") as demo:
|
|
| 1162 |
outputs=[submit_status, results_table]
|
| 1163 |
)
|
| 1164 |
|
|
|
|
| 1165 |
# Clear cache functionality
|
| 1166 |
clear_btn.click(
|
| 1167 |
fn=clear_cache,
|
| 1168 |
outputs=[fetch_status, questions_table]
|
| 1169 |
)
|
| 1170 |
|
| 1171 |
-
if __name__ ==
|
| 1172 |
demo.launch()
|
|
|
|
| 1162 |
outputs=[submit_status, results_table]
|
| 1163 |
)
|
| 1164 |
|
| 1165 |
+
|
| 1166 |
# Clear cache functionality
|
| 1167 |
clear_btn.click(
|
| 1168 |
fn=clear_cache,
|
| 1169 |
outputs=[fetch_status, questions_table]
|
| 1170 |
)
|
| 1171 |
|
| 1172 |
+
if __name__ == "__main__":
|
| 1173 |
demo.launch()
|