Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -214,9 +214,9 @@ body {
|
|
214 |
}
|
215 |
"""
|
216 |
|
|
|
217 |
with gr.Blocks(css=custom_css) as demo:
|
218 |
make_me()
|
219 |
|
220 |
-
#
|
221 |
-
demo.
|
222 |
-
demo.launch()
|
|
|
214 |
}
|
215 |
"""
|
216 |
|
217 |
+
# Thay thế concurrency_count bằng concurrency_limit
|
218 |
with gr.Blocks(css=custom_css) as demo:
|
219 |
make_me()
|
220 |
|
221 |
+
# Gọi launch() với max_threads nếu cần thiết
|
222 |
+
demo.launch(max_threads=50)
|
|