(self, llm: "LLMChat")
| 688 | _staged_commits: List[_RequestState] = [] |
| 689 | |
| 690 | def __init__(self, llm: "LLMChat"): |
| 691 | self.llm = llm |
| 692 | self._warning_prefix = "[KVCOMMEngine]" |
| 693 | |
| 694 | def _log_warning(self, message: str) -> None: |
| 695 | logger.opt(colors=True).warning("<yellow>{}</yellow> {}", self._warning_prefix, message) |
nothing calls this directly
no outgoing calls
no test coverage detected