From 3b29c9a5aab9ec9d34093a6db180263b8e24d872 Mon Sep 17 00:00:00 2001 From: sd109 Date: Wed, 1 May 2024 09:06:39 +0100 Subject: [PATCH 1/2] Pin Python to 3.11 in tilt dev env --- Tiltfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tiltfile b/Tiltfile index b219bde..aa94500 100644 --- a/Tiltfile +++ b/Tiltfile @@ -38,7 +38,7 @@ if run_ui_locally: name="gradio-app-venv", deps=[requirements], cmd=" && ".join([ - "([[ -d {} ]] || python3 -m venv {})".format(venv_name, venv_name), + "([[ -d {} ]] || python3.11 -m venv {})".format(venv_name, venv_name), "source {}/bin/activate".format(venv_name), "pip install -r {}".format(requirements), ]) @@ -54,4 +54,4 @@ if run_ui_locally: "cd chart/web-app", "python3 app.py {} localhost".format(hf_model), ]) - ) \ No newline at end of file + ) From 4ba135fda75162d76af6c71af688a2adae8dc44b Mon Sep 17 00:00:00 2001 From: sd109 Date: Wed, 1 May 2024 09:06:57 +0100 Subject: [PATCH 2/2] Bump vLLM image to v0.4.1 --- chart/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart/values.yaml b/chart/values.yaml index b52a461..9295971 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -35,7 +35,7 @@ api: # Container image config image: repository: vllm/vllm-openai - version: v0.3.2 + version: v0.4.1 monitoring: enabled: true # Service config