superlocalmemory 3.5.0 → 3.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superlocalmemory",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "Information-geometric agent memory with mathematical guarantees. 4-channel retrieval, Fisher-Rao similarity, zero-LLM mode, EU AI Act compliant. Works with Claude, Cursor, Windsurf, and 17+ AI tools.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-memory",
|
package/pyproject.toml
CHANGED
|
@@ -1794,14 +1794,14 @@ def _start_pending_materializer() -> None:
|
|
|
1794
1794
|
if not _waiting_logged:
|
|
1795
1795
|
logger.info("Materializer: waiting for engine to init...")
|
|
1796
1796
|
_waiting_logged = True
|
|
1797
|
-
time.sleep(
|
|
1797
|
+
time.sleep(0.5)
|
|
1798
1798
|
continue
|
|
1799
1799
|
if not _engine_logged:
|
|
1800
1800
|
logger.info("Materializer: engine acquired, starting drain loop")
|
|
1801
1801
|
_engine_logged = True
|
|
1802
|
-
pending = get_pending(limit=
|
|
1802
|
+
pending = get_pending(limit=50)
|
|
1803
1803
|
if not pending:
|
|
1804
|
-
time.sleep(
|
|
1804
|
+
time.sleep(1.0)
|
|
1805
1805
|
continue
|
|
1806
1806
|
logger.info("Materializer: processing %d pending memories", len(pending))
|
|
1807
1807
|
for item in pending:
|