From 215a97fa6c3b55b36c79e96e32a4ae71a5d24a08 Mon Sep 17 00:00:00 2001 From: Tova Movshovitz Date: Tue, 25 Nov 2025 21:48:26 +0200 Subject: [PATCH] Fix docstrings for v1 HiCacheStorage methods (#13851) --- python/sglang/srt/mem_cache/hicache_storage.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/sglang/srt/mem_cache/hicache_storage.py b/python/sglang/srt/mem_cache/hicache_storage.py index 27f963c54..5afa25a56 100644 --- a/python/sglang/srt/mem_cache/hicache_storage.py +++ b/python/sglang/srt/mem_cache/hicache_storage.py @@ -65,7 +65,7 @@ class HiCacheStorage(ABC): ) -> List[bool]: """ Retrieve values for multiple keys. - Returns a list of tensors or None for each key. + Returns a list of booleans indicating success for each key. """ pass @@ -76,8 +76,8 @@ class HiCacheStorage(ABC): extra_info: Optional[HiCacheStorageExtraInfo] = None, ) -> List[bool]: """ - Retrieve values for multiple keys. - Returns a list of tensors or None for each key. + Store multiple key-value pairs. + Returns a list of booleans indicating success for each key. """ pass