[Bugfix] Fix comment typo of get_num_common_prefix_blocks() (#21827)

Signed-off-by: MingzhenHan <hanmingzhen2002@outlook.com>
This commit is contained in:
MingzhenHan
2025-07-30 11:35:33 +08:00
committed by GitHub
parent fdde18229e
commit b7b23da4d2
2 changed files with 3 additions and 3 deletions

View File

@ -130,10 +130,10 @@ class KVCacheCoordinator(ABC):
Args:
request_id: The request ID.
block_hashes: The block hashes of the request.
num_running_requests: The number of requests in the RUNNING state.
Returns:
The number of common prefix blocks.
list[int]: The number of common prefix blocks.
"""
num_blocks_per_group = [
manager.get_num_common_prefix_blocks(request_id,

View File

@ -181,7 +181,7 @@ class SingleTypeKVCacheManager(ABC):
Args:
request_id: The request ID.
block_hashes: The block hashes of the request.
num_running_requests: The number of requests in the RUNNING state.
Returns:
The number of common prefix blocks.