We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is
1 parent bc092ea commit af4ee63Copy full SHA for af4ee63
vllm/v1/engine/processor.py
@@ -79,7 +79,7 @@ def _validate_logprobs(
79
if num_logprobs > max_logprobs:
80
raise ValueError(
81
f"Requested sample logprobs of {num_logprobs}, "
82
- f"which is is greater than max allowed: {max_logprobs}")
+ f"which is greater than max allowed: {max_logprobs}")
83
84
# Validate prompt logprobs.
85
if params.prompt_logprobs:
@@ -89,7 +89,7 @@ def _validate_logprobs(
89
if num_prompt_logprobs > max_logprobs:
90
91
f"Requested prompt logprobs of {num_prompt_logprobs}, "
92
93
94
def _validate_sampling_params(
95
self,
0 commit comments