fix: Use correct TemporalMemory constructor parameters

TemporalMemory takes: storage_path, max_memories, consolidation_interval, decay_base, attention_threshold
Not coherence_threshold or max_signatures.
This commit is contained in:
2026-02-19 19:57:31 +00:00
parent c72ddae7b0
commit 0c8c3da229
+5 -2
View File
@@ -194,8 +194,11 @@ def init_engine(
# Create temporal memory
temporal_memory = TemporalMemory(
coherence_threshold=coherence_threshold,
max_signatures=10000,
storage_path="./memory",
max_memories=10000,
consolidation_interval=3600,
decay_base=0.01,
attention_threshold=coherence_threshold,
)
# Create master and emissary transducers with proper configs