superlocalmemory 3.0.33 → 3.0.34
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.0.
|
|
3
|
+
"version": "3.0.34",
|
|
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
|
@@ -348,7 +348,7 @@ class SLMConfig:
|
|
|
348
348
|
),
|
|
349
349
|
llm=LLMConfig(), # No LLM
|
|
350
350
|
retrieval=RetrievalConfig(
|
|
351
|
-
use_cross_encoder=
|
|
351
|
+
use_cross_encoder=False, # Disabled: 30s PyTorch cold start kills UX
|
|
352
352
|
),
|
|
353
353
|
math=MathConfig(
|
|
354
354
|
sheaf_contradiction_threshold=0.45, # 768d threshold
|
|
@@ -370,7 +370,7 @@ class SLMConfig:
|
|
|
370
370
|
api_base=llm_api_base or "http://localhost:11434",
|
|
371
371
|
api_key=llm_api_key or "",
|
|
372
372
|
),
|
|
373
|
-
retrieval=RetrievalConfig(use_cross_encoder=
|
|
373
|
+
retrieval=RetrievalConfig(use_cross_encoder=False),
|
|
374
374
|
)
|
|
375
375
|
|
|
376
376
|
# Mode C — FULL POWER, UNRESTRICTED
|