@modusensus/dsh-mneme 0.6.8 → 0.6.10
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 +468 -463
- package/cordis.patch.yml +15 -15
- package/lib/api.js +783 -783
- package/lib/client.js +1754 -1757
- package/lib/commands.js +64 -64
- package/lib/config.js +298 -288
- package/lib/dream/clustering.js +118 -118
- package/lib/dream/decisions.js +488 -439
- package/lib/dream/sleep.js +561 -561
- package/lib/dream/tag-extractor.js +156 -156
- package/lib/dream.js +958 -935
- 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 -172
- 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 -80
- 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 -783
- package/src/commands.js +64 -64
- package/src/config.js +298 -288
- package/src/dream/clustering.js +118 -118
- package/src/dream/decisions.js +488 -439
- package/src/dream/sleep.js +561 -561
- package/src/dream/tag-extractor.js +156 -156
- package/src/dream.js +958 -935
- 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 -172
- 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 -594
- 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 +1060 -903
- 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 -118
- 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/search/bm25.js
CHANGED
|
@@ -1,96 +1,96 @@
|
|
|
1
|
-
// BM25 sparse retrieval (v0.5.0 召回率优化 1.1): the third recall path beside
|
|
2
|
-
// vector search and the LIKE keyword scan. The LIKE path only matches full
|
|
3
|
-
// substrings, so a multi-term query ("rust 异步 tokio") misses rows whose
|
|
4
|
-
// terms are scattered. BM25 scores per-token overlap with IDF weighting,
|
|
5
|
-
// which is exactly the gap: identifiers, code fragments and mixed CJK/ASCII
|
|
6
|
-
// queries recall rows the substring scan cannot see.
|
|
7
|
-
|
|
8
|
-
// Tokenizer: ASCII words keep their shape (identifiers like "dsh-mneme" or
|
|
9
|
-
// "ZFS_4421" survive as whole tokens); CJK runs become sliding bigrams
|
|
10
|
-
// (unigram only for single characters), the standard workaround for BM25's
|
|
11
|
-
// whitespace tokenization on Chinese.
|
|
12
|
-
export function tokenize(text) {
|
|
13
|
-
const raw = String(text ?? "").toLowerCase();
|
|
14
|
-
const tokens = [];
|
|
15
|
-
const ascii = raw.match(/[a-z0-9_]+/g) ?? [];
|
|
16
|
-
tokens.push(...ascii);
|
|
17
|
-
const cjkRuns = raw.match(/[\u4e00-\u9fff]+/g) ?? [];
|
|
18
|
-
for (const run of cjkRuns) {
|
|
19
|
-
if (run.length === 1) { tokens.push(run); continue; }
|
|
20
|
-
for (let i = 0; i < run.length - 1; i++) tokens.push(run.slice(i, i + 2));
|
|
21
|
-
}
|
|
22
|
-
return tokens;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
const K1 = 1.5; // term-frequency saturation
|
|
26
|
-
const B = 0.75; // length normalization
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* Build a BM25 index over documents: [{id, title, content}].
|
|
30
|
-
* Returns { score, search }:
|
|
31
|
-
* score(query, doc) — per-spec ad-hoc scoring (re-tokenizes the doc)
|
|
32
|
-
* search(query, {limit}) — precomputed-tf ranking, scores normalized to
|
|
33
|
-
* [0,1] by the max so BM25 hits can weight-blend with vector/keyword
|
|
34
|
-
* scores on one scale. Rows the query does not touch at all are dropped.
|
|
35
|
-
*/
|
|
36
|
-
export function createBM25Index(documents) {
|
|
37
|
-
const docs = Array.isArray(documents) ? documents.filter(Boolean) : [];
|
|
38
|
-
const N = docs.length;
|
|
39
|
-
const df = new Map();
|
|
40
|
-
const prepared = docs.map((doc) => {
|
|
41
|
-
const tokens = tokenize(`${doc.title ?? ""} ${doc.content ?? ""}`);
|
|
42
|
-
const tf = new Map();
|
|
43
|
-
for (const t of tokens) tf.set(t, (tf.get(t) ?? 0) + 1);
|
|
44
|
-
for (const t of tf.keys()) df.set(t, (df.get(t) ?? 0) + 1);
|
|
45
|
-
return { doc, tf, len: tokens.length };
|
|
46
|
-
});
|
|
47
|
-
const avgLen = N ? prepared.reduce((s, p) => s + p.len, 0) / N : 0 || 1;
|
|
48
|
-
|
|
49
|
-
const idf = (t) => {
|
|
50
|
-
const n = df.get(t) ?? 0;
|
|
51
|
-
return Math.log((N - n + 0.5) / (n + 0.5) + 1);
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
function scorePrepared(queryTokens, p) {
|
|
55
|
-
let score = 0;
|
|
56
|
-
for (const t of queryTokens) {
|
|
57
|
-
const f = p.tf.get(t);
|
|
58
|
-
if (!f) continue;
|
|
59
|
-
const norm = p.len ? K1 * (1 - B + B * (p.len / avgLen)) : K1;
|
|
60
|
-
score += idf(t) * ((f * (K1 + 1)) / (f + norm));
|
|
61
|
-
}
|
|
62
|
-
return score;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
return {
|
|
66
|
-
score(query, doc) {
|
|
67
|
-
const tokens = tokenize(`${doc?.title ?? ""} ${doc?.content ?? ""}`);
|
|
68
|
-
const tf = new Map();
|
|
69
|
-
for (const t of tokens) tf.set(t, (tf.get(t) ?? 0) + 1);
|
|
70
|
-
const len = tokens.length;
|
|
71
|
-
// Ad-hoc scoring can't see corpus df; fall back to tf-only saturation
|
|
72
|
-
// (df is approximated as 1 so idf ≈ log(N - 0.5 + 1) is constant).
|
|
73
|
-
let score = 0;
|
|
74
|
-
for (const t of tokenize(query)) {
|
|
75
|
-
const f = tf.get(t);
|
|
76
|
-
if (!f) continue;
|
|
77
|
-
const norm = len ? K1 * (1 - B + B * (len / avgLen)) : K1;
|
|
78
|
-
score += idf(t) * ((f * (K1 + 1)) / (f + norm));
|
|
79
|
-
}
|
|
80
|
-
return score;
|
|
81
|
-
},
|
|
82
|
-
search(query, { limit = 20 } = {}) {
|
|
83
|
-
const qTokens = tokenize(query);
|
|
84
|
-
if (!qTokens.length || !N) return [];
|
|
85
|
-
const scored = [];
|
|
86
|
-
for (const p of prepared) {
|
|
87
|
-
const s = scorePrepared(qTokens, p);
|
|
88
|
-
if (s > 0) scored.push({ row: p.doc, raw: s });
|
|
89
|
-
}
|
|
90
|
-
scored.sort((a, b) => b.raw - a.raw);
|
|
91
|
-
const top = scored.slice(0, limit);
|
|
92
|
-
const max = top[0]?.raw || 1;
|
|
93
|
-
return top.map(({ row, raw }) => ({ ...row, score: max ? raw / max : 0 }));
|
|
94
|
-
}
|
|
95
|
-
};
|
|
96
|
-
}
|
|
1
|
+
// BM25 sparse retrieval (v0.5.0 召回率优化 1.1): the third recall path beside
|
|
2
|
+
// vector search and the LIKE keyword scan. The LIKE path only matches full
|
|
3
|
+
// substrings, so a multi-term query ("rust 异步 tokio") misses rows whose
|
|
4
|
+
// terms are scattered. BM25 scores per-token overlap with IDF weighting,
|
|
5
|
+
// which is exactly the gap: identifiers, code fragments and mixed CJK/ASCII
|
|
6
|
+
// queries recall rows the substring scan cannot see.
|
|
7
|
+
|
|
8
|
+
// Tokenizer: ASCII words keep their shape (identifiers like "dsh-mneme" or
|
|
9
|
+
// "ZFS_4421" survive as whole tokens); CJK runs become sliding bigrams
|
|
10
|
+
// (unigram only for single characters), the standard workaround for BM25's
|
|
11
|
+
// whitespace tokenization on Chinese.
|
|
12
|
+
export function tokenize(text) {
|
|
13
|
+
const raw = String(text ?? "").toLowerCase();
|
|
14
|
+
const tokens = [];
|
|
15
|
+
const ascii = raw.match(/[a-z0-9_]+/g) ?? [];
|
|
16
|
+
tokens.push(...ascii);
|
|
17
|
+
const cjkRuns = raw.match(/[\u4e00-\u9fff]+/g) ?? [];
|
|
18
|
+
for (const run of cjkRuns) {
|
|
19
|
+
if (run.length === 1) { tokens.push(run); continue; }
|
|
20
|
+
for (let i = 0; i < run.length - 1; i++) tokens.push(run.slice(i, i + 2));
|
|
21
|
+
}
|
|
22
|
+
return tokens;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const K1 = 1.5; // term-frequency saturation
|
|
26
|
+
const B = 0.75; // length normalization
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Build a BM25 index over documents: [{id, title, content}].
|
|
30
|
+
* Returns { score, search }:
|
|
31
|
+
* score(query, doc) — per-spec ad-hoc scoring (re-tokenizes the doc)
|
|
32
|
+
* search(query, {limit}) — precomputed-tf ranking, scores normalized to
|
|
33
|
+
* [0,1] by the max so BM25 hits can weight-blend with vector/keyword
|
|
34
|
+
* scores on one scale. Rows the query does not touch at all are dropped.
|
|
35
|
+
*/
|
|
36
|
+
export function createBM25Index(documents) {
|
|
37
|
+
const docs = Array.isArray(documents) ? documents.filter(Boolean) : [];
|
|
38
|
+
const N = docs.length;
|
|
39
|
+
const df = new Map();
|
|
40
|
+
const prepared = docs.map((doc) => {
|
|
41
|
+
const tokens = tokenize(`${doc.title ?? ""} ${doc.content ?? ""}`);
|
|
42
|
+
const tf = new Map();
|
|
43
|
+
for (const t of tokens) tf.set(t, (tf.get(t) ?? 0) + 1);
|
|
44
|
+
for (const t of tf.keys()) df.set(t, (df.get(t) ?? 0) + 1);
|
|
45
|
+
return { doc, tf, len: tokens.length };
|
|
46
|
+
});
|
|
47
|
+
const avgLen = N ? prepared.reduce((s, p) => s + p.len, 0) / N : 0 || 1;
|
|
48
|
+
|
|
49
|
+
const idf = (t) => {
|
|
50
|
+
const n = df.get(t) ?? 0;
|
|
51
|
+
return Math.log((N - n + 0.5) / (n + 0.5) + 1);
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
function scorePrepared(queryTokens, p) {
|
|
55
|
+
let score = 0;
|
|
56
|
+
for (const t of queryTokens) {
|
|
57
|
+
const f = p.tf.get(t);
|
|
58
|
+
if (!f) continue;
|
|
59
|
+
const norm = p.len ? K1 * (1 - B + B * (p.len / avgLen)) : K1;
|
|
60
|
+
score += idf(t) * ((f * (K1 + 1)) / (f + norm));
|
|
61
|
+
}
|
|
62
|
+
return score;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return {
|
|
66
|
+
score(query, doc) {
|
|
67
|
+
const tokens = tokenize(`${doc?.title ?? ""} ${doc?.content ?? ""}`);
|
|
68
|
+
const tf = new Map();
|
|
69
|
+
for (const t of tokens) tf.set(t, (tf.get(t) ?? 0) + 1);
|
|
70
|
+
const len = tokens.length;
|
|
71
|
+
// Ad-hoc scoring can't see corpus df; fall back to tf-only saturation
|
|
72
|
+
// (df is approximated as 1 so idf ≈ log(N - 0.5 + 1) is constant).
|
|
73
|
+
let score = 0;
|
|
74
|
+
for (const t of tokenize(query)) {
|
|
75
|
+
const f = tf.get(t);
|
|
76
|
+
if (!f) continue;
|
|
77
|
+
const norm = len ? K1 * (1 - B + B * (len / avgLen)) : K1;
|
|
78
|
+
score += idf(t) * ((f * (K1 + 1)) / (f + norm));
|
|
79
|
+
}
|
|
80
|
+
return score;
|
|
81
|
+
},
|
|
82
|
+
search(query, { limit = 20 } = {}) {
|
|
83
|
+
const qTokens = tokenize(query);
|
|
84
|
+
if (!qTokens.length || !N) return [];
|
|
85
|
+
const scored = [];
|
|
86
|
+
for (const p of prepared) {
|
|
87
|
+
const s = scorePrepared(qTokens, p);
|
|
88
|
+
if (s > 0) scored.push({ row: p.doc, raw: s });
|
|
89
|
+
}
|
|
90
|
+
scored.sort((a, b) => b.raw - a.raw);
|
|
91
|
+
const top = scored.slice(0, limit);
|
|
92
|
+
const max = top[0]?.raw || 1;
|
|
93
|
+
return top.map(({ row, raw }) => ({ ...row, score: max ? raw / max : 0 }));
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
}
|
package/src/search/tag-boost.js
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
// v0.6.4 Tag-weighted re-rank helpers.
|
|
2
|
-
// Query tags come from `#hashtags` in the query plus any known tags the query
|
|
3
|
-
// mentions; candidates whose tags overlap the query tags or the session's
|
|
4
|
-
// hot-memory tags get their score boosted before the final top-K cut.
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Extract tags from a query: explicit `#hashtags` (CJK allowed) plus known
|
|
8
|
-
* tags whose lowercase form appears in the query. Deduped, order-preserving.
|
|
9
|
-
*/
|
|
10
|
-
export function extractQueryTags(query, knownTags = []) {
|
|
11
|
-
if (typeof query !== "string" || !query) return [];
|
|
12
|
-
const set = new Set();
|
|
13
|
-
const re = /#([a-zA-Z0-9_一-龥-]+)/g;
|
|
14
|
-
let m;
|
|
15
|
-
while ((m = re.exec(query)) !== null) set.add(m[1]);
|
|
16
|
-
const q = query.toLowerCase();
|
|
17
|
-
for (const t of knownTags) {
|
|
18
|
-
if (typeof t === "string" && q.includes(t.toLowerCase())) set.add(t);
|
|
19
|
-
}
|
|
20
|
-
return Array.from(set);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
function hasOverlap(a, b) {
|
|
24
|
-
if (!Array.isArray(a) || !Array.isArray(b)) return false;
|
|
25
|
-
const setB = new Set(b);
|
|
26
|
-
return a.some((x) => setB.has(x));
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Boost candidate scores by tag overlap with the query and/or session tags.
|
|
31
|
-
* Each candidate is expected to carry a `tags` array (enriched by the caller).
|
|
32
|
-
* Returns a new array sorted by boosted score descending; candidates that were
|
|
33
|
-
* boosted are marked `tagBoost: true`. Unchanged candidates keep their
|
|
34
|
-
* relative order (stable).
|
|
35
|
-
*/
|
|
36
|
-
export function applyTagBoost(
|
|
37
|
-
candidates,
|
|
38
|
-
{ queryTags = [], sessionTags = [], factor = 1.15, sessionFactor = 1.08 }
|
|
39
|
-
) {
|
|
40
|
-
const boosted = candidates.map((c) => {
|
|
41
|
-
const tags = c.tags ?? [];
|
|
42
|
-
let score = typeof c.score === "number" ? c.score : 0;
|
|
43
|
-
let didBoost = false;
|
|
44
|
-
|
|
45
|
-
if (queryTags.length && hasOverlap(tags, queryTags)) {
|
|
46
|
-
score = Math.min(1, score * factor);
|
|
47
|
-
didBoost = true;
|
|
48
|
-
}
|
|
49
|
-
if (sessionTags.length && hasOverlap(tags, sessionTags)) {
|
|
50
|
-
score = Math.min(1, score * sessionFactor);
|
|
51
|
-
didBoost = true;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
const out = { ...c, score };
|
|
55
|
-
if (didBoost) out.tagBoost = true;
|
|
56
|
-
return out;
|
|
57
|
-
});
|
|
58
|
-
|
|
59
|
-
boosted.sort((a, b) => (b.score ?? 0) - (a.score ?? 0));
|
|
60
|
-
return boosted;
|
|
61
|
-
}
|
|
1
|
+
// v0.6.4 Tag-weighted re-rank helpers.
|
|
2
|
+
// Query tags come from `#hashtags` in the query plus any known tags the query
|
|
3
|
+
// mentions; candidates whose tags overlap the query tags or the session's
|
|
4
|
+
// hot-memory tags get their score boosted before the final top-K cut.
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Extract tags from a query: explicit `#hashtags` (CJK allowed) plus known
|
|
8
|
+
* tags whose lowercase form appears in the query. Deduped, order-preserving.
|
|
9
|
+
*/
|
|
10
|
+
export function extractQueryTags(query, knownTags = []) {
|
|
11
|
+
if (typeof query !== "string" || !query) return [];
|
|
12
|
+
const set = new Set();
|
|
13
|
+
const re = /#([a-zA-Z0-9_一-龥-]+)/g;
|
|
14
|
+
let m;
|
|
15
|
+
while ((m = re.exec(query)) !== null) set.add(m[1]);
|
|
16
|
+
const q = query.toLowerCase();
|
|
17
|
+
for (const t of knownTags) {
|
|
18
|
+
if (typeof t === "string" && q.includes(t.toLowerCase())) set.add(t);
|
|
19
|
+
}
|
|
20
|
+
return Array.from(set);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function hasOverlap(a, b) {
|
|
24
|
+
if (!Array.isArray(a) || !Array.isArray(b)) return false;
|
|
25
|
+
const setB = new Set(b);
|
|
26
|
+
return a.some((x) => setB.has(x));
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Boost candidate scores by tag overlap with the query and/or session tags.
|
|
31
|
+
* Each candidate is expected to carry a `tags` array (enriched by the caller).
|
|
32
|
+
* Returns a new array sorted by boosted score descending; candidates that were
|
|
33
|
+
* boosted are marked `tagBoost: true`. Unchanged candidates keep their
|
|
34
|
+
* relative order (stable).
|
|
35
|
+
*/
|
|
36
|
+
export function applyTagBoost(
|
|
37
|
+
candidates,
|
|
38
|
+
{ queryTags = [], sessionTags = [], factor = 1.15, sessionFactor = 1.08 }
|
|
39
|
+
) {
|
|
40
|
+
const boosted = candidates.map((c) => {
|
|
41
|
+
const tags = c.tags ?? [];
|
|
42
|
+
let score = typeof c.score === "number" ? c.score : 0;
|
|
43
|
+
let didBoost = false;
|
|
44
|
+
|
|
45
|
+
if (queryTags.length && hasOverlap(tags, queryTags)) {
|
|
46
|
+
score = Math.min(1, score * factor);
|
|
47
|
+
didBoost = true;
|
|
48
|
+
}
|
|
49
|
+
if (sessionTags.length && hasOverlap(tags, sessionTags)) {
|
|
50
|
+
score = Math.min(1, score * sessionFactor);
|
|
51
|
+
didBoost = true;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const out = { ...c, score };
|
|
55
|
+
if (didBoost) out.tagBoost = true;
|
|
56
|
+
return out;
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
boosted.sort((a, b) => (b.score ?? 0) - (a.score ?? 0));
|
|
60
|
+
return boosted;
|
|
61
|
+
}
|