Spaces:
Paused
Paused
increase workers
Browse files
app.py
CHANGED
@@ -478,6 +478,7 @@ with gr.Blocks(
|
|
478 |
playground_state,
|
479 |
],
|
480 |
outputs=summary_output,
|
|
|
481 |
)
|
482 |
|
483 |
# Easy challenge changes
|
@@ -495,6 +496,7 @@ with gr.Blocks(
|
|
495 |
summary_ch_easy,
|
496 |
inputs=[discord_webhook, disable_discord, discord_username_ch_easy, easy_state],
|
497 |
outputs=None,
|
|
|
498 |
)
|
499 |
|
500 |
# Hard challenge changes
|
@@ -519,6 +521,7 @@ with gr.Blocks(
|
|
519 |
],
|
520 |
outputs=None,
|
521 |
js="(a, b, c, d, e) => {return [document.getElementsByClassName('g-recaptcha-response')[0]?.value || document.getElementById('recaptcha-token').value, b, c, d, e]}",
|
|
|
522 |
)
|
523 |
|
524 |
demo.load(
|
|
|
478 |
playground_state,
|
479 |
],
|
480 |
outputs=summary_output,
|
481 |
+
concurrency_limit=100,
|
482 |
)
|
483 |
|
484 |
# Easy challenge changes
|
|
|
496 |
summary_ch_easy,
|
497 |
inputs=[discord_webhook, disable_discord, discord_username_ch_easy, easy_state],
|
498 |
outputs=None,
|
499 |
+
concurrency_limit=100,
|
500 |
)
|
501 |
|
502 |
# Hard challenge changes
|
|
|
521 |
],
|
522 |
outputs=None,
|
523 |
js="(a, b, c, d, e) => {return [document.getElementsByClassName('g-recaptcha-response')[0]?.value || document.getElementById('recaptcha-token').value, b, c, d, e]}",
|
524 |
+
concurrency_limit=100,
|
525 |
)
|
526 |
|
527 |
demo.load(
|