Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -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),
])
Expand All @@ -54,4 +54,4 @@ if run_ui_locally:
"cd chart/web-app",
"python3 app.py {} localhost".format(hf_model),
])
)
)
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down