Skip to content

Commit af4ee63

Browse files
authored
typo: remove duplicate is (#25641)
Signed-off-by: nicole-lihui <nicole.li@daocloud.io>
1 parent bc092ea commit af4ee63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vllm/v1/engine/processor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def _validate_logprobs(
7979
if num_logprobs > max_logprobs:
8080
raise ValueError(
8181
f"Requested sample logprobs of {num_logprobs}, "
82-
f"which is is greater than max allowed: {max_logprobs}")
82+
f"which is greater than max allowed: {max_logprobs}")
8383

8484
# Validate prompt logprobs.
8585
if params.prompt_logprobs:
@@ -89,7 +89,7 @@ def _validate_logprobs(
8989
if num_prompt_logprobs > max_logprobs:
9090
raise ValueError(
9191
f"Requested prompt logprobs of {num_prompt_logprobs}, "
92-
f"which is is greater than max allowed: {max_logprobs}")
92+
f"which is greater than max allowed: {max_logprobs}")
9393

9494
def _validate_sampling_params(
9595
self,

0 commit comments

Comments
 (0)