Update app.py
Browse files
app.py
CHANGED
@@ -48,6 +48,7 @@ _ = load_dotenv(find_dotenv())
|
|
48 |
splittet = False
|
49 |
#Datenbank für Vektorstore
|
50 |
db = None
|
|
|
51 |
|
52 |
#############################################
|
53 |
# Allgemeine Konstanten
|
@@ -715,7 +716,7 @@ with gr.Blocks(css=customCSS, theme=small_and_beautiful_theme) as demo:
|
|
715 |
|
716 |
|
717 |
demo.title = "LI-ChatBot"
|
718 |
-
demo.queue(default_concurrency_limit=
|
719 |
|
720 |
|
721 |
|
|
|
48 |
splittet = False
|
49 |
#Datenbank für Vektorstore
|
50 |
db = None
|
51 |
+
CONCURRENT_USERS = 30
|
52 |
|
53 |
#############################################
|
54 |
# Allgemeine Konstanten
|
|
|
716 |
|
717 |
|
718 |
demo.title = "LI-ChatBot"
|
719 |
+
demo.queue(default_concurrency_limit=CONCURRENT_USERS).launch(debug=True)
|
720 |
|
721 |
|
722 |
|