[RL] [V1] Remove unused device argument from reset_kv_cache (#28766)

Signed-off-by: Zhuohan Li <zhuohan123@gmail.com>
This commit is contained in:
Zhuohan Li
2025-11-14 23:59:42 -08:00
committed by GitHub
parent 98b4d389ed
commit dd6ac1c2bb
5 changed files with 9 additions and 17 deletions

View File

@@ -125,7 +125,7 @@ class EngineClient(ABC):
...
@abstractmethod
async def reset_prefix_cache(self, device: Device | None = None) -> None:
async def reset_prefix_cache(self) -> None:
"""Reset the prefix cache"""
...