hackergeek98 commited on
Commit
62ffb32
·
verified ·
1 Parent(s): ad866ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -153,4 +153,9 @@ with gr.Blocks(title="Phi-2 Training") as demo:
153
  )
154
 
155
  if __name__ == "__main__":
156
- demo.launch(server_name="0.0.0.0", server_port=7860)
 
 
 
 
 
 
153
  )
154
 
155
  if __name__ == "__main__":
156
+ demo.launch(
157
+ server_name="0.0.0.0",
158
+ server_port=7860,
159
+ enable_queue=True, # Add queueing
160
+ share=False # Disable public sharing
161
+ )