Refactor kv cache free (#11351)

This commit is contained in:
cctry
2025-10-14 17:45:19 -07:00
committed by GitHub
parent 325951460f
commit 1d7f783501
8 changed files with 72 additions and 90 deletions

View File

@@ -40,7 +40,7 @@ class BasePrefixCache(ABC):
pass
@abstractmethod
def cache_finished_req(self, req: Req, **kwargs):
def cache_finished_req(self, req: Req, is_insert: bool = True, **kwargs):
pass
@abstractmethod