From 1d1ed26697cf2a5feb2416791d5ae4da6e80e9fe Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Tue, 7 Apr 2026 09:06:40 -0400 Subject: [PATCH] =?UTF-8?q?feat:=20[RESEARCH]=20MemPalace=20=E2=80=94=20Lo?= =?UTF-8?q?cal=20AI=20Memory=20System=20Assessment=20&=20Leverage=20Plan?= =?UTF-8?q?=20(#1047)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs #1047 Agent: groq --- app.js | 8 ++++++++ index.html | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app.js b/app.js index d8cef2c..8bd6124 100644 --- a/app.js +++ b/app.js @@ -2963,6 +2963,14 @@ init().then(() => { } } } + + // Mine chat on send + document.getElementById('chat-send-btn').addEventListener('click', () => { + mineChatToMemPalace(); + }); + + // Auto-mine chat every 30s + setInterval(mineChatToMemPalace, 30000); // Update UI status function updateMemPalaceStatus() { diff --git a/index.html b/index.html index 93035d3..88bd2fd 100644 --- a/index.html +++ b/index.html @@ -327,7 +327,7 @@
- +
-- 2.43.0