vikas83 commited on
Commit
f43df55
·
verified ·
1 Parent(s): f87e959

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -26,5 +26,6 @@ iface = gr.Interface(
26
  description="Enter text and get AI-generated responses!"
27
  )
28
 
29
- # Launch Gradio on a public URL
30
- iface.launch(server_name="0.0.0.0", server_port=7860, share=True)
 
 
26
  description="Enter text and get AI-generated responses!"
27
  )
28
 
29
+ # Launch Gradio (Fix: Remove `share=True`, add `enable_queue=True`)
30
+ iface.launch(server_name="0.0.0.0", server_port=7860, enable_queue=True)
31
+