From 4ce648b97d81c5c6ca74e5617c74c4fb2371f681 Mon Sep 17 00:00:00 2001 From: Chris Van Pelt Date: Mon, 21 Oct 2024 14:01:56 -0400 Subject: [PATCH] Dont override litellm port --- backend/openui/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/openui/__main__.py b/backend/openui/__main__.py index 3d83e2d..5716358 100644 --- a/backend/openui/__main__.py +++ b/backend/openui/__main__.py @@ -90,7 +90,7 @@ def is_running_in_docker(): f"Starting LiteLLM in the background with config: {config_path}" ) litellm_process = subprocess.Popen( - ["litellm", "--config", config_path], + ["litellm", "--config", config_path, "--port", "4000"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True,