From 889a2fd77e94953f483b8110e538d0256fd63fbc Mon Sep 17 00:00:00 2001 From: Jun Siang Cheah Date: Tue, 21 May 2024 22:07:51 +0100 Subject: [PATCH] fix: wrong path for space litellm config --- backend/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/start.sh b/backend/start.sh index a36feadd9..a7232a24a 100755 --- a/backend/start.sh +++ b/backend/start.sh @@ -37,7 +37,7 @@ if [ -n "$SPACE_ID" ]; then # Copy litellm_config.yaml with specified ownership echo "Copying litellm_config.yaml to the desired location with specified ownership..." - cp ./backend/space/litellm_config.yaml ./data/litellm/config.yaml + cp -f ./space/litellm_config.yaml ./data/litellm/config.yaml WEBUI_SECRET_KEY="$WEBUI_SECRET_KEY" uvicorn main:app --host "$HOST" --port "$PORT" --forwarded-allow-ips '*' & webui_pid=$!