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
ce58fdc1
Unverified
Commit
ce58fdc1
authored
Nov 24, 2025
by
kflu
Committed by
GitHub
Nov 25, 2025
Browse files
Fix PoolingParams.skip_reading_prefix_cache type (#29364)
Signed-off-by:
KFL
<
kludev@gmail.com
>
parent
a21256c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vllm/pooling_params.py
vllm/pooling_params.py
+1
-1
vllm/sampling_params.py
vllm/sampling_params.py
+1
-1
No files found.
vllm/pooling_params.py
View file @
ce58fdc1
...
...
@@ -57,7 +57,7 @@ class PoolingParams(
## Internal use only
task
:
PoolingTask
|
None
=
None
requires_token_ids
:
bool
=
False
skip_reading_prefix_cache
:
bool
=
None
skip_reading_prefix_cache
:
bool
|
None
=
None
extra_kwargs
:
dict
[
str
,
Any
]
|
None
=
None
output_kind
:
RequestOutputKind
=
RequestOutputKind
.
FINAL_ONLY
...
...
vllm/sampling_params.py
View file @
ce58fdc1
...
...
@@ -238,7 +238,7 @@ class SamplingParams(
generated token can complete the sequence."""
_bad_words_token_ids
:
list
[
list
[
int
]]
|
None
=
None
skip_reading_prefix_cache
:
bool
=
None
skip_reading_prefix_cache
:
bool
|
None
=
None
@
staticmethod
def
from_optional
(
...
...
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