Anthoniomada commited on
Commit
d0dde80
·
verified ·
1 Parent(s): 254e00d

Update gradio_app.py

Browse files
Files changed (1) hide show
  1. gradio_app.py +8 -1
gradio_app.py CHANGED
@@ -150,7 +150,14 @@ with gr.Blocks() as demo:
150
  outputs = [video_result]
151
  )
152
 
153
- demo.queue().launch(show_api=False, show_error=True, share=True)
 
 
 
 
 
 
 
154
 
155
 
156
 
 
150
  outputs = [video_result]
151
  )
152
 
153
+ `#demo.queue().launch(show_api=False, show_error=True, share=True)
154
+ demo.queue().launch(
155
+ server_name="0.0.0.0", # This makes it accessible from any IP
156
+ server_port=8000, # Specify a port (optional, 7860 is default)
157
+ show_api=False,
158
+ show_error=True,
159
+ share=True # Keep this for Gradio public sharing
160
+ )
161
 
162
 
163