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
fc059c70
Unverified
Commit
fc059c70
authored
Oct 23, 2025
by
Lucia Fang
Committed by
GitHub
Oct 23, 2025
Browse files
[Bugfix] Fix args settings for guided decoding args (#27375)
Signed-off-by:
Lucia Fang
<
fanglu@fb.com
>
parent
bfb240cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
vllm/engine/arg_utils.py
vllm/engine/arg_utils.py
+3
-5
No files found.
vllm/engine/arg_utils.py
View file @
fc059c70
...
...
@@ -1600,15 +1600,13 @@ class EngineArgs:
if
self
.
guided_decoding_backend
is
not
None
:
so_config
.
guided_decoding_backend
=
self
.
guided_decoding_backend
if
self
.
guided_decoding_disable_fallback
is
not
None
:
so_config
.
guided_decoding_disable_fallback
=
(
self
.
guided_decoding_disable_fallback
)
so_config
.
disable_fallback
=
self
.
guided_decoding_disable_fallback
if
self
.
guided_decoding_disable_any_whitespace
is
not
None
:
so_config
.
guided_decoding_
disable_any_whitespace
=
(
so_config
.
disable_any_whitespace
=
(
self
.
guided_decoding_disable_any_whitespace
)
if
self
.
guided_decoding_disable_additional_properties
is
not
None
:
so_config
.
guided_decoding_
disable_additional_properties
=
(
so_config
.
disable_additional_properties
=
(
self
.
guided_decoding_disable_additional_properties
)
...
...
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