Update app.py
Browse files
app.py
CHANGED
|
@@ -524,8 +524,9 @@ with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as demo:
|
|
| 524 |
""")
|
| 525 |
|
| 526 |
if __name__ == "__main__":
|
|
|
|
| 527 |
demo.launch(
|
| 528 |
-
|
| 529 |
-
|
| 530 |
-
|
| 531 |
-
)
|
|
|
|
| 524 |
""")
|
| 525 |
|
| 526 |
if __name__ == "__main__":
|
| 527 |
+
demo.queue(api_open=False)
|
| 528 |
demo.launch(
|
| 529 |
+
server_name="0.0.0.0",
|
| 530 |
+
server_port=7860,
|
| 531 |
+
show_error=True,
|
| 532 |
+
)
|