From 0c8c3da229996d9b9c231ea50f08a2f76e9bf86c Mon Sep 17 00:00:00 2001 From: Solaria Lumis Havens Date: Thu, 19 Feb 2026 19:57:31 +0000 Subject: [PATCH] fix: Use correct TemporalMemory constructor parameters TemporalMemory takes: storage_path, max_memories, consolidation_interval, decay_base, attention_threshold Not coherence_threshold or max_signatures. --- becomingone/api.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/becomingone/api.py b/becomingone/api.py index a4f50a3..c5d8201 100644 --- a/becomingone/api.py +++ b/becomingone/api.py @@ -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