Skip to content
Open
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
12 changes: 8 additions & 4 deletions vllm/model_executor/models/qwen3_omni_moe_thinker.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@

from .interfaces import (
MultiModalEmbeddings,
SupportsLoRA,
SupportsMRoPE,
SupportsMultiModal,
SupportsPP,
Expand Down Expand Up @@ -1651,6 +1652,7 @@ def _process_audio_input(
class Qwen3OmniMoeThinkerForConditionalGeneration(
nn.Module,
SupportsMultiModal,
SupportsLoRA,
SupportsPP,
SupportsMRoPE,
Qwen3OmniMoeConditionalGenerationMixin,
Expand All @@ -1670,12 +1672,14 @@ class Qwen3OmniMoeThinkerForConditionalGeneration(
"k_proj",
"v_proj",
],
"gate_up_proj": [
"gate_proj",
"up_proj",
],
}

embedding_modules = {}

# Skip audio/vision tower modules during LoRA loading -- tower LoRA
# requires enable_tower_connector_lora which is not yet supported.
lora_skip_prefixes = ["audio_tower.", "visual."]

supported_languages = ISO639_1_SUPPORTED_LANGS

@classmethod
Expand Down
Loading