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
582f2c6b
Unverified
Commit
582f2c6b
authored
Oct 15, 2025
by
ahao-anyscale
Committed by
GitHub
Oct 15, 2025
Browse files
[BUG] Allow runai_streamer_sharded in config check (#26958)
Signed-off-by:
ahao-anyscale
<
ahao@anyscale.com
>
parent
f8a0acbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
vllm/config/vllm.py
vllm/config/vllm.py
+5
-2
No files found.
vllm/config/vllm.py
View file @
582f2c6b
...
...
@@ -740,10 +740,13 @@ class VllmConfig:
"Overriding `load_format` to 'runai_streamer'"
)
self
.
load_config
.
load_format
=
"runai_streamer"
elif
self
.
load_config
.
load_format
!=
"runai_streamer"
:
elif
self
.
load_config
.
load_format
not
in
(
"runai_streamer"
,
"runai_streamer_sharded"
,
):
raise
ValueError
(
f
"To load a model from S3, 'load_format' "
f
"must be 'runai_streamer', "
f
"must be 'runai_streamer'
or 'runai_streamer_sharded'
, "
f
"but got '
{
self
.
load_config
.
load_format
}
'. "
f
"Model:
{
self
.
model_config
.
model
}
"
)
...
...
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