Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -95,11 +95,10 @@ css = """
|
|
95 |
demo = gr.ChatInterface(respond,
|
96 |
title="Hunyuan T1",
|
97 |
examples=example_prompts,
|
98 |
-
chatbot=chatbot
|
99 |
-
css=css
|
100 |
|
101 |
)
|
102 |
|
103 |
if __name__ == "__main__":
|
104 |
-
demo.queue(default_concurrency_limit=
|
105 |
-
demo.launch(max_threads=
|
|
|
95 |
demo = gr.ChatInterface(respond,
|
96 |
title="Hunyuan T1",
|
97 |
examples=example_prompts,
|
98 |
+
chatbot=chatbot
|
|
|
99 |
|
100 |
)
|
101 |
|
102 |
if __name__ == "__main__":
|
103 |
+
demo.queue(default_concurrency_limit=100)
|
104 |
+
demo.launch(max_threads=100)
|