From ff947dfc2dd6d139347b3f87b03d51d610d2e581 Mon Sep 17 00:00:00 2001 From: "wenmeng.zwm" Date: Wed, 8 Nov 2023 18:22:30 +0800 Subject: [PATCH] remove concurrency_limit --- examples/apps/llm_riddles/app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/apps/llm_riddles/app.py b/examples/apps/llm_riddles/app.py index 348e4bd8..8ac2fdeb 100644 --- a/examples/apps/llm_riddles/app.py +++ b/examples/apps/llm_riddles/app.py @@ -143,5 +143,4 @@ with block as demo: inputs=[message, state], outputs=[challenge_result, chatbot, question_info, challenge_info]) -demo.queue(concurrency_count=10).launch( - height=800, share=True, concurrency_limit=10) +demo.queue(concurrency_count=10).launch(height=800, share=True)