You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ColossalAI/colossalai/inference/core/request_handler.py

11 lines
224 B

class RequestHandler:
def __init__(self, cache_config) -> None:
self.cache_config = cache_config
self._init_cache()
def _init_cache(self):
pass
def schedule(self, request):
pass