Test: add trailing period in CONTRIBUTING.md#3
Merged
Conversation
Signed-off-by: lishunyang <lishunyang12@163.com>
Owner
Author
|
@claude please review this PR |
lishunyang12
added a commit
that referenced
this pull request
Apr 19, 2026
… in pipeline.py Moves pipeline declarations to vllm_omni/config/pipeline_registry.py (one dict per category, keyed by model_type -> (module, var)), mirroring vLLM's models/registry.py. _PIPELINE_REGISTRY is now a lazy proxy that imports the module on first lookup, so a missed registration is impossible to hide in a per-model pipeline.py. - New: vllm_omni/config/pipeline_registry.py (_OMNI_PIPELINES, _DIFFUSION_PIPELINES, union _VLLM_OMNI_PIPELINES) - stage_config: replace dict _PIPELINE_REGISTRY with _LazyPipelineRegistry; drop the now-unnecessary _discover_all_pipelines walk. - qwen2_5_omni / qwen3_omni / qwen3_tts pipeline.py: remove register_pipeline() self-calls; pipelines are declared centrally now. - register_pipeline() kept public for plugins/tests; dynamic registrations override the central entry. Addresses vllm-project#2887 item 4 and vllm-project#2383 (comment). Preparatory work for #3/N (17 single-stage diffusion models). Signed-off-by: lishunyang <lishunyang12@163.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.
Trivial test PR to verify the Claude Code Review workflow triggers correctly on new PRs after merging #2.