@modusensus/dsh-mneme 0.6.6 → 0.6.8
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/LICENSE +21 -21
- package/README.md +463 -457
- package/cordis.patch.yml +15 -15
- package/lib/api.js +783 -693
- package/lib/client.js +1757 -1656
- package/lib/commands.js +64 -64
- package/lib/config.js +288 -288
- package/lib/dream/clustering.js +118 -118
- package/lib/dream/decisions.js +439 -439
- package/lib/dream/sleep.js +561 -554
- package/lib/dream/tag-extractor.js +156 -156
- package/lib/dream.js +935 -929
- package/lib/embedding.js +154 -154
- package/lib/entities/extractor.js +242 -242
- package/lib/hot-memory.js +53 -53
- package/lib/index.js +361 -361
- package/lib/inject.js +208 -208
- package/lib/local-embedder.js +282 -282
- package/lib/mirror.js +170 -170
- package/lib/parser/tag.js +59 -59
- package/lib/parser/wiki-link.js +38 -38
- package/lib/quality-filter.js +123 -123
- package/lib/reranker.js +218 -218
- package/lib/search/adaptive.js +22 -22
- package/lib/search/bm25.js +96 -96
- package/lib/search/tag-boost.js +61 -61
- package/lib/service.js +1726 -1726
- package/lib/settings.js +172 -142
- package/lib/store.js +2238 -2238
- package/lib/summarize.js +236 -236
- package/lib/tools.js +290 -290
- package/lib/vector-index.js +116 -116
- package/package.json +80 -75
- package/scripts/benchmark-embed.js +201 -201
- package/scripts/benchmark-recall.js +133 -133
- package/scripts/benchmark-rerank.js +166 -166
- package/scripts/e2e-dsh.js +218 -218
- package/scripts/stress-dsh.js +255 -255
- package/scripts/sync-lib.js +52 -52
- package/src/api.js +783 -693
- package/src/commands.js +64 -64
- package/src/config.js +288 -288
- package/src/dream/clustering.js +118 -118
- package/src/dream/decisions.js +439 -439
- package/src/dream/sleep.js +561 -554
- package/src/dream/tag-extractor.js +156 -156
- package/src/dream.js +935 -929
- package/src/embedding.js +154 -154
- package/src/entities/extractor.js +242 -242
- package/src/hot-memory.js +53 -53
- package/src/index.js +361 -361
- package/src/inject.js +208 -208
- package/src/local-embedder.js +282 -282
- package/src/mirror.js +170 -170
- package/src/parser/tag.js +59 -59
- package/src/parser/wiki-link.js +38 -38
- package/src/quality-filter.js +123 -123
- package/src/reranker.js +218 -218
- package/src/search/adaptive.js +22 -22
- package/src/search/bm25.js +96 -96
- package/src/search/tag-boost.js +61 -61
- package/src/service.js +1726 -1726
- package/src/settings.js +172 -142
- package/src/store.js +2238 -2238
- package/src/summarize.js +236 -236
- package/src/tools.js +290 -290
- package/src/vector-index.js +116 -116
- package/test/api.test.js +594 -549
- package/test/audit.test.js +448 -448
- package/test/benchmark.test.js +35 -35
- package/test/boundary-v0625.test.js +82 -82
- package/test/client.test.js +368 -368
- package/test/clustering.test.js +100 -100
- package/test/commands.test.js +69 -69
- package/test/config.test.js +50 -50
- package/test/conflict-freeze.test.js +290 -290
- package/test/directory.test.js +134 -134
- package/test/dream.test.js +903 -901
- package/test/entities.test.js +522 -522
- package/test/epistemic.test.js +298 -298
- package/test/fnew-0112.test.js +311 -311
- package/test/fnew-03.test.js +422 -422
- package/test/graph-api.test.js +175 -175
- package/test/helpers/dream-mock.js +82 -82
- package/test/hot-memory.test.js +174 -174
- package/test/inject.test.js +103 -103
- package/test/llm-audit.test.js +279 -279
- package/test/local-embedder.test.js +227 -227
- package/test/mirror-dirty.test.js +424 -424
- package/test/mirror-edit-digest.test.js +187 -187
- package/test/mirror-generation.test.js +499 -499
- package/test/mirror.test.js +249 -249
- package/test/normalize-decisions.test.js +120 -120
- package/test/peer-blockers.test.js +190 -190
- package/test/policy-epoch.test.js +259 -259
- package/test/provenance.test.js +103 -103
- package/test/quality-filter.test.js +118 -118
- package/test/reasoning-effort.test.js +199 -199
- package/test/recall-evals.test.js +235 -235
- package/test/recall-layer.test.js +315 -315
- package/test/receipt-chain.test.js +451 -451
- package/test/reflection.test.js +226 -226
- package/test/reranker.test.js +240 -240
- package/test/search-fusion.test.js +90 -90
- package/test/semantic.test.js +124 -124
- package/test/service-search.test.js +199 -199
- package/test/service.test.js +435 -435
- package/test/settings.test.js +118 -101
- package/test/sleep.test.js +365 -365
- package/test/store.test.js +436 -436
- package/test/stress.test.js +209 -209
- package/test/summarize.test.js +191 -191
- package/test/tag-boost.test.js +125 -125
- package/test/tag.test.js +312 -312
- package/test/tools.test.js +285 -285
- package/test/vector-index.test.js +221 -221
- package/test/wiki-link.test.js +332 -332
package/src/quality-filter.js
CHANGED
|
@@ -1,123 +1,123 @@
|
|
|
1
|
-
// Rule-based memory quality filter (Bug7). Pure + total: no shared state, no
|
|
2
|
-
// async, no external calls, so it can be unit-tested in isolation and wired
|
|
3
|
-
// into the writer without any I/O or store access.
|
|
4
|
-
//
|
|
5
|
-
// evaluateMemoryQuality scores a memory 0-100 and tags low-value signals. The
|
|
6
|
-
// writer then decides (config.memoryQualityFilter):
|
|
7
|
-
// score >= degradeThreshold (60) → stored normally
|
|
8
|
-
// archiveThreshold (30) <= score < 60 → quality_score persisted; the
|
|
9
|
-
// injection sort re-ranks by importance * quality_score/100 (degraded)
|
|
10
|
-
// score < archiveThreshold (30) → archived + tagged low_quality (still
|
|
11
|
-
// recallable via explicit search, just never auto-injected)
|
|
12
|
-
//
|
|
13
|
-
// Signals and their deductions from the base 100:
|
|
14
|
-
// meta meta-memory vocabulary (the memory talks about the
|
|
15
|
-
// memory system itself, not the user's world) −45
|
|
16
|
-
// self_referential title/content mentions its own type label −15
|
|
17
|
-
// short_content content shorter than minContentLength −80
|
|
18
|
-
// repetitive dedup ratio (unique chars / total) < 0.3 −50
|
|
19
|
-
// duplicate bigram similarity to a recent memory > 0.85 −80
|
|
20
|
-
//
|
|
21
|
-
// The meta signal alone lands a well-formed memory in the degraded band
|
|
22
|
-
// (30..60) — it is still stored and searchable, just demoted in injection.
|
|
23
|
-
// Reaching the archive band (< 30) needs a degenerate body (short, repetitive
|
|
24
|
-
// or near-duplicated) or stacked signals.
|
|
25
|
-
|
|
26
|
-
export const META_MEMORY_RE =
|
|
27
|
-
/记忆|mneme|recall|inject|上下文|token|prompt|系统指令|作为AI|作为助手|我需要记住|总结一下刚才/;
|
|
28
|
-
|
|
29
|
-
// Own-type labels, used for self-reference detection (the English type value
|
|
30
|
-
// the AI writers emit plus the Chinese equivalent a human would type).
|
|
31
|
-
const TYPE_LABELS = {
|
|
32
|
-
preference: ["preference", "偏好"],
|
|
33
|
-
project: ["project", "项目"],
|
|
34
|
-
decision: ["decision", "决策", "决定"],
|
|
35
|
-
history: ["history", "历史", "事件"],
|
|
36
|
-
summary: ["summary", "总结", "摘要", "总览"],
|
|
37
|
-
pattern: ["pattern", "模式", "规律"]
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
/** Normalized bigram-overlap similarity in [0,1]; 0 for tiny/empty inputs. */
|
|
41
|
-
export function textSimilarity(a, b) {
|
|
42
|
-
const bigrams = (s) => {
|
|
43
|
-
const set = new Set();
|
|
44
|
-
const t = String(s).replace(/\s+/g, "");
|
|
45
|
-
for (let i = 0; i < t.length - 1; i++) set.add(t.slice(i, i + 2));
|
|
46
|
-
return set;
|
|
47
|
-
};
|
|
48
|
-
const A = bigrams(a);
|
|
49
|
-
const B = bigrams(b);
|
|
50
|
-
if (!A.size || !B.size) return 0;
|
|
51
|
-
let inter = 0;
|
|
52
|
-
for (const g of A) if (B.has(g)) inter++;
|
|
53
|
-
return inter / Math.min(A.size, B.size);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/** Fraction of characters that are unique (dedup ratio in [0,1]). */
|
|
57
|
-
export function dedupRatio(text) {
|
|
58
|
-
const t = String(text);
|
|
59
|
-
if (!t.length) return 0;
|
|
60
|
-
return new Set(t).size / t.length;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Score a memory's quality. `recentContents` (optional) is the list of recent
|
|
65
|
-
* memory contents used for near-duplicate detection; when omitted the duplicate
|
|
66
|
-
* signal is skipped. Never throws: every input is coerced defensively.
|
|
67
|
-
* @param {object} memory { type, title, content }
|
|
68
|
-
* @param {object} [options]
|
|
69
|
-
* @param {number} [options.minContentLength=10]
|
|
70
|
-
* @param {string[]} [options.recentContents] up to ~20 recent contents
|
|
71
|
-
* @returns {{score: number, tags: string[], reason: string}}
|
|
72
|
-
*/
|
|
73
|
-
export function evaluateMemoryQuality(memory, options = {}) {
|
|
74
|
-
const minContentLength = options.minContentLength ?? 10;
|
|
75
|
-
const recentContents = Array.isArray(options.recentContents) ? options.recentContents : [];
|
|
76
|
-
const title = String(memory?.title ?? "");
|
|
77
|
-
const content = String(memory?.content ?? "");
|
|
78
|
-
const text = `${title}\n${content}`;
|
|
79
|
-
const trimmed = content.trim();
|
|
80
|
-
const tags = [];
|
|
81
|
-
const reasons = [];
|
|
82
|
-
let score = 100;
|
|
83
|
-
|
|
84
|
-
if (META_MEMORY_RE.test(text)) {
|
|
85
|
-
score -= 45;
|
|
86
|
-
tags.push("meta");
|
|
87
|
-
reasons.push("meta-memory vocabulary");
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
const labels = TYPE_LABELS[memory?.type];
|
|
91
|
-
if (labels && labels.some((l) => text.includes(l))) {
|
|
92
|
-
score -= 15;
|
|
93
|
-
tags.push("self_referential");
|
|
94
|
-
reasons.push("mentions its own type");
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
if (minContentLength > 0 && trimmed.length < minContentLength) {
|
|
98
|
-
score -= 80;
|
|
99
|
-
tags.push("short_content");
|
|
100
|
-
reasons.push(`content shorter than ${minContentLength} chars`);
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
if (trimmed.length > 0 && dedupRatio(trimmed) < 0.3) {
|
|
104
|
-
score -= 50;
|
|
105
|
-
tags.push("repetitive");
|
|
106
|
-
reasons.push("repetitive content");
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
if (recentContents.length > 0 && trimmed.length > 0) {
|
|
110
|
-
for (const other of recentContents) {
|
|
111
|
-
if (textSimilarity(trimmed, other) > 0.85) {
|
|
112
|
-
score -= 80;
|
|
113
|
-
tags.push("duplicate");
|
|
114
|
-
reasons.push("near-duplicate of a recent memory");
|
|
115
|
-
break;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
score = Math.max(0, Math.min(100, Math.round(score)));
|
|
121
|
-
if (score < 30) tags.push("low_quality");
|
|
122
|
-
return { score, tags: [...new Set(tags)], reason: reasons.length ? reasons.join("; ") : "ok" };
|
|
123
|
-
}
|
|
1
|
+
// Rule-based memory quality filter (Bug7). Pure + total: no shared state, no
|
|
2
|
+
// async, no external calls, so it can be unit-tested in isolation and wired
|
|
3
|
+
// into the writer without any I/O or store access.
|
|
4
|
+
//
|
|
5
|
+
// evaluateMemoryQuality scores a memory 0-100 and tags low-value signals. The
|
|
6
|
+
// writer then decides (config.memoryQualityFilter):
|
|
7
|
+
// score >= degradeThreshold (60) → stored normally
|
|
8
|
+
// archiveThreshold (30) <= score < 60 → quality_score persisted; the
|
|
9
|
+
// injection sort re-ranks by importance * quality_score/100 (degraded)
|
|
10
|
+
// score < archiveThreshold (30) → archived + tagged low_quality (still
|
|
11
|
+
// recallable via explicit search, just never auto-injected)
|
|
12
|
+
//
|
|
13
|
+
// Signals and their deductions from the base 100:
|
|
14
|
+
// meta meta-memory vocabulary (the memory talks about the
|
|
15
|
+
// memory system itself, not the user's world) −45
|
|
16
|
+
// self_referential title/content mentions its own type label −15
|
|
17
|
+
// short_content content shorter than minContentLength −80
|
|
18
|
+
// repetitive dedup ratio (unique chars / total) < 0.3 −50
|
|
19
|
+
// duplicate bigram similarity to a recent memory > 0.85 −80
|
|
20
|
+
//
|
|
21
|
+
// The meta signal alone lands a well-formed memory in the degraded band
|
|
22
|
+
// (30..60) — it is still stored and searchable, just demoted in injection.
|
|
23
|
+
// Reaching the archive band (< 30) needs a degenerate body (short, repetitive
|
|
24
|
+
// or near-duplicated) or stacked signals.
|
|
25
|
+
|
|
26
|
+
export const META_MEMORY_RE =
|
|
27
|
+
/记忆|mneme|recall|inject|上下文|token|prompt|系统指令|作为AI|作为助手|我需要记住|总结一下刚才/;
|
|
28
|
+
|
|
29
|
+
// Own-type labels, used for self-reference detection (the English type value
|
|
30
|
+
// the AI writers emit plus the Chinese equivalent a human would type).
|
|
31
|
+
const TYPE_LABELS = {
|
|
32
|
+
preference: ["preference", "偏好"],
|
|
33
|
+
project: ["project", "项目"],
|
|
34
|
+
decision: ["decision", "决策", "决定"],
|
|
35
|
+
history: ["history", "历史", "事件"],
|
|
36
|
+
summary: ["summary", "总结", "摘要", "总览"],
|
|
37
|
+
pattern: ["pattern", "模式", "规律"]
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
/** Normalized bigram-overlap similarity in [0,1]; 0 for tiny/empty inputs. */
|
|
41
|
+
export function textSimilarity(a, b) {
|
|
42
|
+
const bigrams = (s) => {
|
|
43
|
+
const set = new Set();
|
|
44
|
+
const t = String(s).replace(/\s+/g, "");
|
|
45
|
+
for (let i = 0; i < t.length - 1; i++) set.add(t.slice(i, i + 2));
|
|
46
|
+
return set;
|
|
47
|
+
};
|
|
48
|
+
const A = bigrams(a);
|
|
49
|
+
const B = bigrams(b);
|
|
50
|
+
if (!A.size || !B.size) return 0;
|
|
51
|
+
let inter = 0;
|
|
52
|
+
for (const g of A) if (B.has(g)) inter++;
|
|
53
|
+
return inter / Math.min(A.size, B.size);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/** Fraction of characters that are unique (dedup ratio in [0,1]). */
|
|
57
|
+
export function dedupRatio(text) {
|
|
58
|
+
const t = String(text);
|
|
59
|
+
if (!t.length) return 0;
|
|
60
|
+
return new Set(t).size / t.length;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Score a memory's quality. `recentContents` (optional) is the list of recent
|
|
65
|
+
* memory contents used for near-duplicate detection; when omitted the duplicate
|
|
66
|
+
* signal is skipped. Never throws: every input is coerced defensively.
|
|
67
|
+
* @param {object} memory { type, title, content }
|
|
68
|
+
* @param {object} [options]
|
|
69
|
+
* @param {number} [options.minContentLength=10]
|
|
70
|
+
* @param {string[]} [options.recentContents] up to ~20 recent contents
|
|
71
|
+
* @returns {{score: number, tags: string[], reason: string}}
|
|
72
|
+
*/
|
|
73
|
+
export function evaluateMemoryQuality(memory, options = {}) {
|
|
74
|
+
const minContentLength = options.minContentLength ?? 10;
|
|
75
|
+
const recentContents = Array.isArray(options.recentContents) ? options.recentContents : [];
|
|
76
|
+
const title = String(memory?.title ?? "");
|
|
77
|
+
const content = String(memory?.content ?? "");
|
|
78
|
+
const text = `${title}\n${content}`;
|
|
79
|
+
const trimmed = content.trim();
|
|
80
|
+
const tags = [];
|
|
81
|
+
const reasons = [];
|
|
82
|
+
let score = 100;
|
|
83
|
+
|
|
84
|
+
if (META_MEMORY_RE.test(text)) {
|
|
85
|
+
score -= 45;
|
|
86
|
+
tags.push("meta");
|
|
87
|
+
reasons.push("meta-memory vocabulary");
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const labels = TYPE_LABELS[memory?.type];
|
|
91
|
+
if (labels && labels.some((l) => text.includes(l))) {
|
|
92
|
+
score -= 15;
|
|
93
|
+
tags.push("self_referential");
|
|
94
|
+
reasons.push("mentions its own type");
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
if (minContentLength > 0 && trimmed.length < minContentLength) {
|
|
98
|
+
score -= 80;
|
|
99
|
+
tags.push("short_content");
|
|
100
|
+
reasons.push(`content shorter than ${minContentLength} chars`);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (trimmed.length > 0 && dedupRatio(trimmed) < 0.3) {
|
|
104
|
+
score -= 50;
|
|
105
|
+
tags.push("repetitive");
|
|
106
|
+
reasons.push("repetitive content");
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
if (recentContents.length > 0 && trimmed.length > 0) {
|
|
110
|
+
for (const other of recentContents) {
|
|
111
|
+
if (textSimilarity(trimmed, other) > 0.85) {
|
|
112
|
+
score -= 80;
|
|
113
|
+
tags.push("duplicate");
|
|
114
|
+
reasons.push("near-duplicate of a recent memory");
|
|
115
|
+
break;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
score = Math.max(0, Math.min(100, Math.round(score)));
|
|
121
|
+
if (score < 30) tags.push("low_quality");
|
|
122
|
+
return { score, tags: [...new Set(tags)], reason: reasons.length ? reasons.join("; ") : "ok" };
|
|
123
|
+
}
|