hoe / Super-main-3 /src /memory /store.py
Cunt1257's picture
Upload 136 files
f02fdcc verified
Raw
History Blame Contribute Delete
542 Bytes
"""
Shared singleton memory stores.
All modules — API routes, agents, cognitive plugins — import from here
so they operate on the same in-memory state within a single process.
"""
from .associative import AssociativeMemory
from .temporal import TemporalKnowledgeGraph
from .experiential import ExperientialRepository
from .working import WorkingContextMemory
associative_store = AssociativeMemory()
temporal_store = TemporalKnowledgeGraph()
experiential_store = ExperientialRepository()
working_store = WorkingContextMemory()