From ab8d446e16f55a33aad5caf710bcd7dab3687e65 Mon Sep 17 00:00:00 2001 From: Andrew Stout Date: Sat, 16 Aug 2025 17:30:01 -0500 Subject: [PATCH] Moved updating message below setup_uv --- ct/litellm.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ct/litellm.sh b/ct/litellm.sh index 5b317fa5..4c5d7c9d 100644 --- a/ct/litellm.sh +++ b/ct/litellm.sh @@ -33,9 +33,10 @@ function update_script() { systemctl stop litellm.service msg_ok "Stopped ${APP}" - msg_info "Updating $APP" VENV_PATH="/opt/litellm/.venv" PYTHON_VERSION="3.13" setup_uv + + msg_info "Updating $APP" $STD "$VENV_PATH/bin/python" -m pip install --upgrade litellm[proxy] prisma msg_info "Starting ${APP}"