Refactored litellm script to use uv

This commit is contained in:
Andrew Stout
2025-08-08 16:49:55 -05:00
parent c094133ea1
commit ec0de310e8
3 changed files with 15 additions and 16 deletions

View File

@@ -28,9 +28,10 @@ function update_script() {
msg_error "No ${APP} Installation Found!"
exit
fi
msg_info "Updating $APP"
$STD apt-get update
pip install litellm[proxy] --upgrade
PYTHON_VERSION="3.13" setup_uv
$STD "$VENV_PATH/bin/python" -m pip install --upgrade litellm[proxy] prisma
msg_ok "Updated $APP"
exit
}