MCPcopy Create free account
hub / github.com/FastMAS/KVCOMM / commit

Method commit

KVCOMM/llm/kvcomm_engine.py:636–642  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

634 return key in self._base
635
636 def commit(self) -> None:
637 for key, value in self._local.items():
638 if value is _DELETED:
639 self._base.pop(key, None)
640 else:
641 self._base[key] = value
642 self._local.clear()
643
644
645class _RequestState:

Callers 2

commitMethod · 0.45

Calls 2

itemsMethod · 0.80
popMethod · 0.80

Tested by

no test coverage detected