Spaces:
Sleeping
Sleeping
Pointf5ive commited on
Commit ·
2f1780f
1
Parent(s): 894f8d5
Remove deprecated queue=False flags from Gradio handlers
Browse files
app.py
CHANGED
|
@@ -1370,7 +1370,6 @@ with gr.Blocks(title="TOTEM Studio") as demo:
|
|
| 1370 |
run_codex_extraction,
|
| 1371 |
inputs=[codex_file, codex_author_name, codex_author_id, codex_works],
|
| 1372 |
outputs=[codex_report, codex_json, codex_status],
|
| 1373 |
-
queue=False,
|
| 1374 |
trigger_mode="multiple",
|
| 1375 |
)
|
| 1376 |
# Auto-fill author metadata from catalogue on file upload.
|
|
@@ -1378,7 +1377,6 @@ with gr.Blocks(title="TOTEM Studio") as demo:
|
|
| 1378 |
autofill_codex_details,
|
| 1379 |
inputs=[codex_file, codex_author_name, codex_author_id, codex_works],
|
| 1380 |
outputs=[codex_author_name, codex_author_id, codex_works, codex_status],
|
| 1381 |
-
queue=False,
|
| 1382 |
trigger_mode="always_last",
|
| 1383 |
)
|
| 1384 |
codex_clear_btn.click(
|
|
|
|
| 1370 |
run_codex_extraction,
|
| 1371 |
inputs=[codex_file, codex_author_name, codex_author_id, codex_works],
|
| 1372 |
outputs=[codex_report, codex_json, codex_status],
|
|
|
|
| 1373 |
trigger_mode="multiple",
|
| 1374 |
)
|
| 1375 |
# Auto-fill author metadata from catalogue on file upload.
|
|
|
|
| 1377 |
autofill_codex_details,
|
| 1378 |
inputs=[codex_file, codex_author_name, codex_author_id, codex_works],
|
| 1379 |
outputs=[codex_author_name, codex_author_id, codex_works, codex_status],
|
|
|
|
| 1380 |
trigger_mode="always_last",
|
| 1381 |
)
|
| 1382 |
codex_clear_btn.click(
|