MCPcopy Create free account
hub / github.com/Ishabdullah/Codey-v2 / memory_loaded

Method memory_loaded

core/observability.py:64–71  ·  view source on GitHub ↗

Get memory status.

(self)

Source from the content-addressed store, hash-verified

62
63 @property
64 def memory_loaded(self) -> Dict:
65 """Get memory status."""
66 try:
67 from core.memory_v2 import get_memory
68 memory = get_memory()
69 return memory.status()
70 except:
71 return {"error": "Memory not initialized"}
72
73 @property
74 def tasks_pending(self) -> int:

Callers

nothing calls this directly

Calls 2

get_memoryFunction · 0.90
statusMethod · 0.45

Tested by

no test coverage detected