From 85c3f29d40f5ac534526c4a6b9c7c0880498b620 Mon Sep 17 00:00:00 2001 From: missionfloyd Date: Tue, 5 Nov 2024 19:16:29 -0700 Subject: [PATCH] Change --nowebui default port to 7860 --- webui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.py b/webui.py index 2c417168aa6..6cfe555ee98 100644 --- a/webui.py +++ b/webui.py @@ -40,7 +40,7 @@ def api_only(): print(f"Startup time: {startup_timer.summary()}.") api.launch( server_name=initialize_util.gradio_server_name(), - port=cmd_opts.port if cmd_opts.port else 7861, + port=cmd_opts.port if cmd_opts.port else 7860, root_path=f"/{cmd_opts.subpath}" if cmd_opts.subpath else "" )