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
90d74eba
Unverified
Commit
90d74eba
authored
Feb 04, 2026
by
Cyrus Leung
Committed by
GitHub
Feb 04, 2026
Browse files
[Deprecation] Remove `_get_data_parser` in MM processor (#33757)
Signed-off-by:
DarkLight1337
<
tlleungac@connect.ust.hk
>
parent
45f8fd6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
vllm/multimodal/processing/processor.py
vllm/multimodal/processing/processor.py
+6
-7
No files found.
vllm/multimodal/processing/processor.py
View file @
90d74eba
...
@@ -988,16 +988,15 @@ class BaseMultiModalProcessor(ABC, Generic[_I]):
...
@@ -988,16 +988,15 @@ class BaseMultiModalProcessor(ABC, Generic[_I]):
self
.
dummy_inputs
=
dummy_inputs
self
.
dummy_inputs
=
dummy_inputs
self
.
cache
=
cache
self
.
cache
=
cache
# TODO: Remove in v0.18
if
hasattr
(
self
,
"_get_data_parser"
):
if
hasattr
(
self
,
"_get_data_parser"
):
logger
.
warning_once
(
raise
ValueError
(
"BaseMultiModalProcessor._get_data_parser
is deprecated
"
"BaseMultiModalProcessor._get_data_parser
has been
"
"
and will be removed
in v0.16."
"
moved to `BaseProcessingInfo.build_data_parser`
in v0.16.
"
"You should override `
i
nfo.build_data_parser` instead."
"You should override `
BaseProcessingI
nfo.build_data_parser` instead."
)
)
self
.
data_parser
=
self
.
_get_data_parser
()
# type: ignore
self
.
data_parser
=
self
.
info
.
get_data_parser
()
else
:
self
.
data_parser
=
self
.
info
.
get_data_parser
()
@
property
@
property
@
deprecated
(
"Will be removed in v0.17. Use `info.supported_mm_limits` instead."
)
@
deprecated
(
"Will be removed in v0.17. Use `info.supported_mm_limits` instead."
)
...
...
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