Update gradio_app.py
Browse files- gradio_app.py +8 -8
gradio_app.py
CHANGED
|
@@ -150,14 +150,14 @@ with gr.Blocks() as demo:
|
|
| 150 |
outputs = [video_result]
|
| 151 |
)
|
| 152 |
|
| 153 |
-
|
| 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 |
|
|
|
|
| 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 |
|