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
af4ee63e
Unverified
Commit
af4ee63e
authored
Sep 25, 2025
by
Nicole LiHui 🥜
Committed by
GitHub
Sep 25, 2025
Browse files
typo: remove duplicate `is` (#25641)
Signed-off-by:
nicole-lihui
<
nicole.li@daocloud.io
>
parent
bc092ea8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/v1/engine/processor.py
vllm/v1/engine/processor.py
+2
-2
No files found.
vllm/v1/engine/processor.py
View file @
af4ee63e
...
@@ -79,7 +79,7 @@ class Processor:
...
@@ -79,7 +79,7 @@ class Processor:
if
num_logprobs
>
max_logprobs
:
if
num_logprobs
>
max_logprobs
:
raise
ValueError
(
raise
ValueError
(
f
"Requested sample logprobs of
{
num_logprobs
}
, "
f
"Requested sample logprobs of
{
num_logprobs
}
, "
f
"which is
is
greater than max allowed:
{
max_logprobs
}
"
)
f
"which is greater than max allowed:
{
max_logprobs
}
"
)
# Validate prompt logprobs.
# Validate prompt logprobs.
if
params
.
prompt_logprobs
:
if
params
.
prompt_logprobs
:
...
@@ -89,7 +89,7 @@ class Processor:
...
@@ -89,7 +89,7 @@ class Processor:
if
num_prompt_logprobs
>
max_logprobs
:
if
num_prompt_logprobs
>
max_logprobs
:
raise
ValueError
(
raise
ValueError
(
f
"Requested prompt logprobs of
{
num_prompt_logprobs
}
, "
f
"Requested prompt logprobs of
{
num_prompt_logprobs
}
, "
f
"which is
is
greater than max allowed:
{
max_logprobs
}
"
)
f
"which is greater than max allowed:
{
max_logprobs
}
"
)
def
_validate_sampling_params
(
def
_validate_sampling_params
(
self
,
self
,
...
...
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