luisoala commited on
Commit
474b47d
·
1 Parent(s): 7c8fccb
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -284,6 +284,8 @@ if __name__ == "__main__":
284
  app.launch(
285
  max_threads=1, # Reduce thread conflicts
286
  show_error=True,
287
- queue_timeout=300, # Match our 5-minute timeout
288
- share=False
 
 
289
  )
 
284
  app.launch(
285
  max_threads=1, # Reduce thread conflicts
286
  show_error=True,
287
+ share=False,
288
+ server_kwargs={
289
+ "timeout": 300 # 5-minute timeout
290
+ }
291
  )