[WIP] Vllm recipes tool improve - #53325
Open
louie-tsai wants to merge 3 commits into
Open
Conversation
louie-tsai
force-pushed
the
vllm_recipes_tool_improve
branch
from
August 21, 2026 21:38
e633fa3 to
11133e0
Compare
Signed-off-by: louie-tsai <louie.tsai@intel.com>
Signed-off-by: louie-tsai <louie.tsai@intel.com>
louie-tsai
force-pushed
the
vllm_recipes_tool_improve
branch
from
August 21, 2026 21:38
11133e0 to
8b04cbf
Compare
Signed-off-by: louie-tsai <louie.tsai@intel.com>
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.
Purpose
Add a simple flow to convert a validated vLLM Recipe into deployment-ready config.yml and env.sh.
The recipe remains the baseline. Hardware and workload information are optional and can be used to refine deployment-sensitive runtime settings so users can deploy models with configurations that better match their actual system and workload.
flowchart LR R["vLLM Recipe"] --> C["Recipe Converter"] H["Hardware Info (optional)"] --> C W["Workload Info (optional)"] --> C C --> F["config.yml + env.sh"] F --> D["vLLM Docker Image"] D --> E["OpenAI Endpoint"]This helps bridge validated vLLM Recipes to an optimized deployment without requiring users to manually translate and tune recipe parameters.
Test Plan
Verify recipe-only conversion still works.
Verify hardware detection and optional workload inputs refine runtime settings.
Verify config.yml and env.sh are generated correctly.
Verify unsupported runtime-tuning hardware fails clearly.
Test Result
Tested recipe conversion and runtime tuning on Intel Xeon CPU, including hardware detection, workload inputs, and generated vLLM configuration.
Essential Elements of an Effective PR Description Checklist
supported_models.mdandexamplesfor a new model.