You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: TDZ crash - move longTermMemory declaration before buildStaticPrompt() call
v1.8.34 crashed on every message with 'Cannot access longTermMemory before initialization'.
Root cause: const longTermMemory was declared at line 876 but buildStaticPrompt()
(which references longTermMemory at line 767) was called at line 842.
Fix: reorder declarations so longTermMemory is initialized before buildStaticPrompt() runs.
0 commit comments