Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@
logger = logging.get_logger(__name__)


# See https://github.com/vllm-project/vllm-omni/issues/963.
# TODO: Remove this workaround when the issue is resolved.
try:
_CHECK_MODEL_INPUTS = check_model_inputs()
except TypeError:
_CHECK_MODEL_INPUTS = check_model_inputs


@dataclass
@auto_docstring
class Qwen3TTSTokenizerV2EncoderOutput(ModelOutput):
Expand Down Expand Up @@ -495,7 +503,7 @@ def __init__(self, config: Qwen3TTSTokenizerV2DecoderConfig):
# Initialize weights and apply final processing
self.post_init()

@check_model_inputs
@_CHECK_MODEL_INPUTS
@auto_docstring
def forward(
self,
Expand Down