superlocalmemory 3.4.48 → 3.4.49
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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to SuperLocalMemory V3 will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.4.49] - 2026-05-22
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **`SLM_DAEMON_HOST` env var** — Configurable host binding for the unified daemon. Previously hardcoded to `127.0.0.1`; now reads `SLM_DAEMON_HOST` (default `127.0.0.1`). Set to `0.0.0.0` to expose the SLM API on all LAN interfaces for cross-machine mesh use.
|
|
12
|
+
|
|
8
13
|
## [3.4.48] - 2026-05-21
|
|
9
14
|
|
|
10
15
|
**Multi-Machine Mesh Coordination — M4 & M5 now work as one.**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superlocalmemory",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.49",
|
|
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
|
@@ -273,10 +273,6 @@ class LLMBackbone:
|
|
|
273
273
|
headers = {
|
|
274
274
|
"x-api-key": self._api_key,
|
|
275
275
|
"anthropic-version": _ANTHROPIC_API_VERSION,
|
|
276
|
-
# Enable prompt caching — system prompt cached as ephemeral block.
|
|
277
|
-
# Requires ≥1024 tokens in the cached block to activate.
|
|
278
|
-
# Savings: ~90% cost reduction on cached input tokens.
|
|
279
|
-
"anthropic-beta": "prompt-caching-2024-07-31",
|
|
280
276
|
"Content-Type": "application/json",
|
|
281
277
|
}
|
|
282
278
|
payload: dict[str, Any] = {
|
|
@@ -286,14 +282,7 @@ class LLMBackbone:
|
|
|
286
282
|
"messages": [{"role": "user", "content": prompt}],
|
|
287
283
|
}
|
|
288
284
|
if system:
|
|
289
|
-
|
|
290
|
-
payload["system"] = [
|
|
291
|
-
{
|
|
292
|
-
"type": "text",
|
|
293
|
-
"text": system,
|
|
294
|
-
"cache_control": {"type": "ephemeral"},
|
|
295
|
-
}
|
|
296
|
-
]
|
|
285
|
+
payload["system"] = system
|
|
297
286
|
return _ANTHROPIC_URL, headers, payload
|
|
298
287
|
|
|
299
288
|
def _build_azure(
|
|
@@ -1526,7 +1526,7 @@ def start_server(port: int = _DEFAULT_PORT) -> None:
|
|
|
1526
1526
|
config = uvicorn.Config(
|
|
1527
1527
|
app="superlocalmemory.server.unified_daemon:create_app",
|
|
1528
1528
|
factory=True,
|
|
1529
|
-
host="127.0.0.1",
|
|
1529
|
+
host=os.environ.get("SLM_DAEMON_HOST", "127.0.0.1"),
|
|
1530
1530
|
port=port,
|
|
1531
1531
|
log_level="warning",
|
|
1532
1532
|
timeout_graceful_shutdown=10,
|