|
|
@@ -55,6 +55,9 @@ __all__ = [
|
|
|
"ScratchpadManager",
|
|
|
"MemoryWriter",
|
|
|
"MemoryOrchestrator",
|
|
|
+ # Memory Contract
|
|
|
+ "MemoryContract",
|
|
|
+ "MemoryContractAdapter",
|
|
|
]
|
|
|
|
|
|
|
|
|
@@ -95,6 +98,9 @@ _LAZY_EXPORTS: dict[str, tuple[str, str]] = {
|
|
|
"ScratchpadManager": (".memory.store", "ScratchpadManager"),
|
|
|
"MemoryWriter": (".memory.writer", "MemoryWriter"),
|
|
|
"MemoryOrchestrator": (".memory.orchestrator", "MemoryOrchestrator"),
|
|
|
+ # Memory Contract
|
|
|
+ "MemoryContract": (".memory_contract", "MemoryContract"),
|
|
|
+ "MemoryContractAdapter": (".memory_contract_adapter", "MemoryContractAdapter"),
|
|
|
}
|
|
|
|
|
|
|