Update demo.py
Browse files
demo.py
CHANGED
|
@@ -473,12 +473,11 @@ with gr.Blocks(title="🔊", theme=gr.themes.Base(primary_hue="blue", neutral_hu
|
|
| 473 |
)
|
| 474 |
|
| 475 |
if config.iscolab:
|
| 476 |
-
app.launch(share=True,
|
| 477 |
else:
|
| 478 |
app.launch(
|
| 479 |
server_name="0.0.0.0",
|
| 480 |
inbrowser=not config.noautoopen,
|
| 481 |
server_port=config.listen_port,
|
| 482 |
quiet=True,
|
| 483 |
-
queue=True
|
| 484 |
)
|
|
|
|
| 473 |
)
|
| 474 |
|
| 475 |
if config.iscolab:
|
| 476 |
+
app.launch(share=True, quiet=False)
|
| 477 |
else:
|
| 478 |
app.launch(
|
| 479 |
server_name="0.0.0.0",
|
| 480 |
inbrowser=not config.noautoopen,
|
| 481 |
server_port=config.listen_port,
|
| 482 |
quiet=True,
|
|
|
|
| 483 |
)
|