cmckinle commited on
Commit
88f9c16
·
verified ·
1 Parent(s): 57e8402

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -352,4 +352,11 @@ def create_gradio_interface():
352
 
353
  if __name__ == "__main__":
354
  app = create_gradio_interface()
355
- app.launch(show_api=False, max_threads=24)
 
 
 
 
 
 
 
 
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
+ )