pdarleyjr commited on
Commit
ba4cb28
·
1 Parent(s): 3fb9b0c

Fix queue configuration for Gradio interface

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -59,14 +59,12 @@ demo = gr.Interface(
59
  flagging_mode="never"
60
  )
61
 
62
- # Enable queue
63
- demo.queue()
64
-
65
  # Launch the app with optimized configuration for Hugging Face Spaces
66
  if __name__ == "__main__":
67
- demo.queue(concurrency_count=1, max_size=20) # Configure queue for better performance
68
  demo.launch(
69
  server_name="0.0.0.0",
70
  share=True,
71
- show_error=True
 
72
  )
 
59
  flagging_mode="never"
60
  )
61
 
 
 
 
62
  # Launch the app with optimized configuration for Hugging Face Spaces
63
  if __name__ == "__main__":
64
+ demo.queue() # Enable queue with default settings
65
  demo.launch(
66
  server_name="0.0.0.0",
67
  share=True,
68
+ show_error=True,
69
+ max_threads=40 # Increase max threads for better performance
70
  )