Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
00d3310d
Unverified
Commit
00d3310d
authored
Nov 27, 2025
by
Cyrus Leung
Committed by
GitHub
Nov 27, 2025
Browse files
[Bugfix] Update Ultravox compatibility (#29588)
Signed-off-by:
DarkLight1337
<
tlleungac@connect.ust.hk
>
parent
da3222f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
vllm/model_executor/models/ultravox.py
vllm/model_executor/models/ultravox.py
+5
-0
No files found.
vllm/model_executor/models/ultravox.py
View file @
00d3310d
...
@@ -116,7 +116,12 @@ class UltravoxProcessingInfo(BaseProcessingInfo):
...
@@ -116,7 +116,12 @@ class UltravoxProcessingInfo(BaseProcessingInfo):
def
get_feature_extractor
(
self
,
**
kwargs
:
object
)
->
WhisperFeatureExtractor
:
def
get_feature_extractor
(
self
,
**
kwargs
:
object
)
->
WhisperFeatureExtractor
:
hf_processor
=
self
.
get_hf_processor
(
**
kwargs
)
hf_processor
=
self
.
get_hf_processor
(
**
kwargs
)
# Changed in https://huggingface.co/fixie-ai/ultravox-v0_5-llama-3_2-1b/commit/9a3c571b8fdaf1e66dd3ea61bbcb6db5c70a438e
audio_processor
=
hf_processor
.
audio_processor
# type: ignore
audio_processor
=
hf_processor
.
audio_processor
# type: ignore
if
isinstance
(
audio_processor
,
WhisperFeatureExtractor
):
return
audio_processor
feature_extractor
=
audio_processor
.
feature_extractor
# type: ignore
feature_extractor
=
audio_processor
.
feature_extractor
# type: ignore
assert
isinstance
(
feature_extractor
,
WhisperFeatureExtractor
)
assert
isinstance
(
feature_extractor
,
WhisperFeatureExtractor
)
return
feature_extractor
return
feature_extractor
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment