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
8c084de5
Unverified
Commit
8c084de5
authored
Dec 21, 2025
by
Kevin McKay
Committed by
GitHub
Dec 21, 2025
Browse files
[Misc] Fix spelling typos in comments (#31114)
Signed-off-by:
c0de128
<
kevin.mckay@outlook.com
>
parent
19cc9468
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
.buildkite/scripts/generate-nightly-index.py
.buildkite/scripts/generate-nightly-index.py
+1
-1
tests/models/multimodal/processing/test_tensor_schema.py
tests/models/multimodal/processing/test_tensor_schema.py
+1
-1
vllm/reasoning/mistral_reasoning_parser.py
vllm/reasoning/mistral_reasoning_parser.py
+1
-1
No files found.
.buildkite/scripts/generate-nightly-index.py
View file @
8c084de5
...
@@ -372,7 +372,7 @@ if __name__ == "__main__":
...
@@ -372,7 +372,7 @@ if __name__ == "__main__":
print
(
f
"Found
{
len
(
wheel_files
)
}
wheel files for version
{
version
}
:
{
wheel_files
}
"
)
print
(
f
"Found
{
len
(
wheel_files
)
}
wheel files for version
{
version
}
:
{
wheel_files
}
"
)
# keep only "official" files for a non-nightly version (specifed by cli args)
# keep only "official" files for a non-nightly version (specif
i
ed by cli args)
PY_VERSION_RE
=
re
.
compile
(
r
"^\d+\.\d+\.\d+([a-zA-Z0-9.+-]*)?$"
)
PY_VERSION_RE
=
re
.
compile
(
r
"^\d+\.\d+\.\d+([a-zA-Z0-9.+-]*)?$"
)
if
PY_VERSION_RE
.
match
(
version
):
if
PY_VERSION_RE
.
match
(
version
):
# upload-wheels.sh ensures no "dev" is in args.version
# upload-wheels.sh ensures no "dev" is in args.version
...
...
tests/models/multimodal/processing/test_tensor_schema.py
View file @
8c084de5
...
@@ -138,7 +138,7 @@ def create_batched_mm_kwargs(
...
@@ -138,7 +138,7 @@ def create_batched_mm_kwargs(
)
)
# TODO(Isotr0py): Don't initalize model during test
# TODO(Isotr0py): Don't init
i
alize model during test
@
contextmanager
@
contextmanager
def
initialize_dummy_model
(
def
initialize_dummy_model
(
model_cls
:
type
[
nn
.
Module
],
model_cls
:
type
[
nn
.
Module
],
...
...
vllm/reasoning/mistral_reasoning_parser.py
View file @
8c084de5
...
@@ -104,7 +104,7 @@ class MistralReasoningParser(BaseThinkingReasoningParser):
...
@@ -104,7 +104,7 @@ class MistralReasoningParser(BaseThinkingReasoningParser):
# 3. Both BOT and EOT have been outputted.
# 3. Both BOT and EOT have been outputted.
elif
has_bot_token
and
has_eot_token
:
elif
has_bot_token
and
has_eot_token
:
return
input_ids
[:
bot_token_index
]
+
input_ids
[
eot_token_index
+
1
:]
return
input_ids
[:
bot_token_index
]
+
input_ids
[
eot_token_index
+
1
:]
# 4. Only EOT has been outputted => this should not have occured for a model
# 4. Only EOT has been outputted => this should not have occur
r
ed for a model
# well prompted and trained.
# well prompted and trained.
else
:
else
:
return
input_ids
[:
eot_token_index
]
+
input_ids
[
eot_token_index
+
1
:]
return
input_ids
[:
eot_token_index
]
+
input_ids
[
eot_token_index
+
1
:]
...
...
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