Fix queue configuration for Gradio interface
Browse files
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(
|
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 |
)
|