chore(lib): bump vllm/vllm-openai to v0.26.0 - #523
Merged
Conversation
Two-year jump from v0.20.0 (Aug 2024) → v0.26.0 (Jul 2026). The default launch template's flags — --model, --port, --revision, --trust-remote-code, --tensor-parallel-size — have not moved between the two versions, and the Disable Thinking toggle's --default-chat-template-kwargs shape is unchanged. Motivation: v0.20 pre-dates a lot of the model architectures we now cache, notably Gemma 4 (v0.21+), gpt-oss (v0.24), and TranslateGemma (v0.26). We already confirmed Gemma-4-12b-it, Gemma-3-4b-it, and DeepSeek-OCR-2 launch cleanly on v0.26.0 via a runtime env override. Follow the earlier tigerflow-ml pattern for the test that used to hard-code the default tag: assert against `DEFAULT_IMAGES` instead of the literal so future bumps don't touch this file. Refs #512
ReviewSmall, well-scoped chore PR — nice work keeping the diff minimal by relying on Code quality
Minor nit
Potential issues / risk
Test coverage
Security
Overall: LGTM pending the outstanding smoke tests noted in the PR description. Happy to take another look once the checklist is complete and this comes out of draft. |
This was referenced Aug 28, 2026
cswaney
marked this pull request as ready for review
August 28, 2026 08:47
13 tasks
This was referenced Aug 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two-year jump from `v0.20.0` (Aug 2024) to `v0.26.0` (Jul 2026). The launch template's flags (`--model`, `--port`, `--revision`, `--trust-remote-code`, `--tensor-parallel-size`) are unchanged between the two versions, and the Disable Thinking toggle's `--default-chat-template-kwargs` shape was not touched.
Motivation: v0.20 pre-dates many models we now cache. Concretely, Gemma 4 (v0.21+), gpt-oss (v0.24), and TranslateGemma (v0.26) either fail or are hit-and-miss on the current pin.
Testing status
Runtime override for pre-merge validation:
```shell
BLACKFISH_TEXT_GENERATION_IMAGE=vllm/vllm-openai:v0.26.0 blackfish start
```
Full checklist tracked on the issue — #512. Highlights already green:
Still to smoke test before this leaves draft:
Notes
Refs #512