From 44e4f5a0d15006de822a089e887733bcc142ecc7 Mon Sep 17 00:00:00 2001 From: Raffaele Terribile Date: Sun, 26 Nov 2023 10:34:05 +0100 Subject: [PATCH] Substitute deprecated settings --- ChatApp/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ChatApp/app.py b/ChatApp/app.py index d0f7d0f..392c46a 100755 --- a/ChatApp/app.py +++ b/ChatApp/app.py @@ -298,4 +298,5 @@ def interface_retry(*args): demo.title = "Llama Chat UI" -demo.queue(concurrency_count=1).launch() +# The parameter `concurrency_count` is deprecated and has no effect (will be removed in a future version). +demo.queue(default_concurrency_limit=1).launch()