Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -352,4 +352,11 @@ def create_gradio_interface():
|
|
352 |
|
353 |
if __name__ == "__main__":
|
354 |
app = create_gradio_interface()
|
355 |
-
app.launch(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
|
353 |
if __name__ == "__main__":
|
354 |
app = create_gradio_interface()
|
355 |
+
app.launch(
|
356 |
+
show_api=False,
|
357 |
+
max_threads=24,
|
358 |
+
max_request_size=1024, # in MB
|
359 |
+
server_max_body_size=2000, # in MB
|
360 |
+
server_max_buffer_size=2000, # in MB
|
361 |
+
timeout=600
|
362 |
+
)
|