10000 cleanup: upgrade vllm version to v0.7.3 by nayihz · Pull Request #289 · InftyAI/llmaz · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cleanup: upgrade vllm version to v0.7.3 #289

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 6, 2025
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
2 changes: 1 addition & 1 deletion chart/templates/backends/vllm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
- -m
- vllm.entrypoints.openai.api_server
image: vllm/vllm-openai
version: v0.6.0
version: v0.7.3
# Do not edit the preset argument name unless you know what you're doing.
# Free to add more arguments with your requirements.
recommendedConfigs:
Expand Down
2 changes: 1 addition & 1 deletion test/integration/webhook/backendruntime_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ var _ = ginkgo.Describe("BackendRuntime default and validation", func() {
ginkgo.Entry("BackendRuntime creation with no resources", &testValidatingCase{
creationFunc: func() *inferenceapi.BackendRuntime {
return wrapper.MakeBackendRuntime("vllm").
Image("vllm/vllm-openai").Version("v0.6.0").
Image("vllm/vllm-openai").Version(util.VllmImageVersion).
Command([]string{"python3", "-m", "vllm.entrypoints.openai.api_server"}).
Arg("default", []string{"--model", "{{.ModelPath}}", "--served-model-name", "{{.ModelName}}", "--host", "0.0.0.0", "--port", "8080"}).
Obj()
Expand Down
2 changes: 2 additions & 0 deletions test/util/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ const (
Interval = time.Millisecond * 250
E2ETimeout = 5 * time.Minute
E2EInterval = 1 * time.Second

VllmImageVersion = "v0.7.3"
)
2 changes: 1 addition & 1 deletion test/util/mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func MockASampleService(ns string) *inferenceapi.Service {

func MockASampleBackendRuntime() *wrapper.BackendRuntimeWrapper {
return wrapper.MakeBackendRuntime("vllm").
Image("vllm/vllm-openai").Version("v0.6.0").
Image("vllm/vllm-openai").Version(VllmImageVersion).
Command([]string{"python3", "-m", "vllm.entrypoints.openai.api_server"}).
Arg("default", []string{"--model", "{{.ModelPath}}", "--served-model-name", "{{.ModelName}}", "--host", "0.0.0.0", "--port", "8080"}).
Request("default", "cpu", "4").Limit("default", "cpu", "4")
Expand Down
Loading
0