feat: HyperCLOVAX-SEED-Omni-8B full pipeline (vision decoder + S2S/T2V E2E)#1
Merged
with1015 merged 4 commits intowith1015:model/hyperclovax-audiofrom Apr 6, 2026
Conversation
…e config - diffusion/models/hyperclovax_vision/: HyperCLOVAX vision diffusion pipeline (transformer, layers, vision_token_embedder, pipeline) - model_executor/models/hcx_omni/: HCX Omni thinker model - model_executor/stage_configs/hcx_omni.yaml: 3-stage pipeline config (Stage-0 LLM thinker, Stage-1 vision decoder, Stage-2 audio decoder) - model_executor/stage_input_processors/hyperclovax_seed_omni.py: thinker→vision/audio token routing - engine/, entrypoints/: arg_utils, input_processor, omni_llm, zmq_utils, stage_utils, cli/main integration - examples/online_serving/hcx_omni/: client demo and run script - tests/: e2e and unit tests for HCX Omni Co-Authored-By: Hyunjoon Jeong <with1015@unist.ac.kr>
- async_omni.py: redesign _process_sequential_results for fan-out topology — Stage-0 forwards to Stage-1 (vision) AND Stage-2 (audio) independently based on engine_input_source; add skipped_stages for conditional routing - serving_chat.py: add _stage0_is_llm guard so GLM-Image bare-text replacement does not clobber HCX Omni Stage-0 multimodal inputs; handle audio output in _create_chat_completion_response - async_omni_diffusion.py, omni_stage.py: vLLM 0.18.0 API alignment - worker/gpu_ar_model_runner.py, async_omni_llm.py: compatibility fixes Co-Authored-By: 길재은 <jaeeun.kil@navercorp.com> Co-Authored-By: Hyunjoon Jeong <with1015@unist.ac.kr>
- diffusion/ipc.py, diffusion_engine.py, diffusion_worker.py: IPC stability and worker lifecycle fixes for HCX audio+vision stages - diffusion/models/hyperclovax_audio/pipeline_hyperclovax_audio.py: finetuned audio decoder path, transformers_modules deserialization, zero-shot speaker embedding fallback - diffusion/registry.py, request.py: HCX Omni diffusion model registration and request type handling Validated E2E with HyperCLOVAX-SEED-Omni-8B: Speech-to-Speech → 11.84s / 568KB WAV (BigVGAN, 24kHz) Text-to-Vision → 768×768 PNG (diffusion, 50 steps) Co-Authored-By: 길재은 <jaeeun.kil@navercorp.com> Co-Authored-By: Hyunjoon Jeong <with1015@unist.ac.kr>
- tests/unit/conftest.py: stub vllm_omni heavy init so unit tests can import stage_input_processors without a full vLLM installation - vllm_omni/config/model.py: guard _RUNNER_TASKS / TaskOption imports with try/except fallback for vLLM 0.18.0 where these were removed Co-Authored-By: 길재은 <jaeeun.kil@navercorp.com> Co-Authored-By: Hyunjoon Jeong <with1015@unist.ac.kr>
Collaborator
Author
Test Plan ResultsVerified against a running 3-stage HyperCLOVAX-SEED-Omni-8B server (
S2ST2VUnit Tests |
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
Builds on vllm-project#869 (HyperCLOVAX audio decoder) to complete the full 3-stage HyperCLOVAX-SEED-Omni-8B pipeline with E2E validated Speech-to-Speech and Text-to-Vision.
Commits
1. feat: vision pipeline, thinker model, stage config (길재은)
diffusion/models/hyperclovax_vision/: HyperCLOVAX vision diffusion pipelinemodel_executor/models/hcx_omni/: HCX Omni thinker modelmodel_executor/stage_configs/hcx_omni.yaml: 3-stage pipeline configmodel_executor/stage_input_processors/hyperclovax_seed_omni.py: thinker→decoder token routingexamples/,tests/: client demo, e2e and unit tests2. fix: async fan-out topology, serving pipeline, vLLM 0.18.0 compat
async_omni.py: redesign_process_sequential_resultsfor fan-out topology — Stage-0 independently routes to Stage-1 (vision) AND Stage-2 (audio) viaengine_input_sourceserving_chat.py: add_stage0_is_llmguard to prevent GLM-Image path clobbering HCX Omni multimodal inputs3. fix: diffusion IPC, audio/vision decoder E2E fixes
diffusion/ipc.py,diffusion_engine.py,diffusion_worker.py: IPC stability for multi-stage diffusionpipeline_hyperclovax_audio.py: finetuned decoder path, speaker embedding fallbackregistry.py,request.py: HCX Omni diffusion registrationE2E Test Results