@velvetmonkey/flywheel-memory 2.1.4 → 2.2.0
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 +201 -661
- package/README.md +18 -49
- package/dist/index.js +2180 -430
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -108,34 +108,109 @@ var init_vault = __esm({
|
|
|
108
108
|
function levenshteinDistance(a, b) {
|
|
109
109
|
if (a.length === 0) return b.length;
|
|
110
110
|
if (b.length === 0) return a.length;
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
for (let j = 0; j <= a.length; j++) {
|
|
116
|
-
matrix[0][j] = j;
|
|
111
|
+
if (a.length > b.length) {
|
|
112
|
+
const t = a;
|
|
113
|
+
a = b;
|
|
114
|
+
b = t;
|
|
117
115
|
}
|
|
116
|
+
const row = new Uint16Array(a.length + 1);
|
|
117
|
+
for (let j = 0; j <= a.length; j++) row[j] = j;
|
|
118
118
|
for (let i = 1; i <= b.length; i++) {
|
|
119
|
+
let prev = row[0];
|
|
120
|
+
row[0] = i;
|
|
119
121
|
for (let j = 1; j <= a.length; j++) {
|
|
122
|
+
const cur = row[j];
|
|
120
123
|
if (b.charAt(i - 1) === a.charAt(j - 1)) {
|
|
121
|
-
|
|
124
|
+
row[j] = prev;
|
|
122
125
|
} else {
|
|
123
|
-
|
|
124
|
-
matrix[i - 1][j - 1] + 1,
|
|
125
|
-
// substitution
|
|
126
|
-
matrix[i][j - 1] + 1,
|
|
127
|
-
// insertion
|
|
128
|
-
matrix[i - 1][j] + 1
|
|
129
|
-
// deletion
|
|
130
|
-
);
|
|
126
|
+
row[j] = 1 + Math.min(prev, row[j - 1], row[j]);
|
|
131
127
|
}
|
|
128
|
+
prev = cur;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
return row[a.length];
|
|
132
|
+
}
|
|
133
|
+
function normalizeFuzzyTerm(term) {
|
|
134
|
+
return term.toLowerCase().replace(/[^a-z0-9]/g, "");
|
|
135
|
+
}
|
|
136
|
+
function fuzzySimilarity(a, b) {
|
|
137
|
+
const maxLen = Math.max(a.length, b.length);
|
|
138
|
+
if (maxLen === 0) return 1;
|
|
139
|
+
return 1 - levenshteinDistance(a, b) / maxLen;
|
|
140
|
+
}
|
|
141
|
+
function bestFuzzyMatch(token, candidates, threshold = FUZZY_THRESHOLD) {
|
|
142
|
+
if (token.length < MIN_FUZZY_LENGTH) return 0;
|
|
143
|
+
let best = 0;
|
|
144
|
+
for (const candidate of candidates) {
|
|
145
|
+
if (candidate.length < MIN_FUZZY_LENGTH) continue;
|
|
146
|
+
if (Math.abs(token.length - candidate.length) > MAX_LENGTH_DELTA) continue;
|
|
147
|
+
const sim = fuzzySimilarity(token, candidate);
|
|
148
|
+
if (sim >= threshold && sim > best) {
|
|
149
|
+
best = sim;
|
|
132
150
|
}
|
|
133
151
|
}
|
|
134
|
-
return
|
|
152
|
+
return best;
|
|
135
153
|
}
|
|
154
|
+
function buildCollapsedContentTerms(tokens) {
|
|
155
|
+
const terms = /* @__PURE__ */ new Set();
|
|
156
|
+
for (let i = 0; i < tokens.length; i++) {
|
|
157
|
+
let collapsed = tokens[i];
|
|
158
|
+
terms.add(collapsed);
|
|
159
|
+
if (i + 1 < tokens.length) {
|
|
160
|
+
collapsed += tokens[i + 1];
|
|
161
|
+
terms.add(collapsed);
|
|
162
|
+
}
|
|
163
|
+
if (i + 2 < tokens.length) {
|
|
164
|
+
collapsed += tokens[i + 2];
|
|
165
|
+
terms.add(collapsed);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
return terms;
|
|
169
|
+
}
|
|
170
|
+
function scoreFuzzyMatch(entityTokens, unmatchedTokenIndices, contentTokens, collapsedContentTerms, entityName, fuzzyMatchBonus, tokenIdfFn, tokenFuzzyCache) {
|
|
171
|
+
if (entityName.length <= 3 || entityName === entityName.toUpperCase()) {
|
|
172
|
+
return { fuzzyScore: 0, fuzzyMatchedWords: 0, isWholeTermMatch: false };
|
|
173
|
+
}
|
|
174
|
+
let fuzzyScore = 0;
|
|
175
|
+
let fuzzyMatchedWords = 0;
|
|
176
|
+
for (const idx of unmatchedTokenIndices) {
|
|
177
|
+
const token = entityTokens[idx];
|
|
178
|
+
if (token.length < MIN_FUZZY_LENGTH) continue;
|
|
179
|
+
let sim;
|
|
180
|
+
if (tokenFuzzyCache.has(token)) {
|
|
181
|
+
sim = tokenFuzzyCache.get(token);
|
|
182
|
+
} else {
|
|
183
|
+
sim = bestFuzzyMatch(token, contentTokens, FUZZY_THRESHOLD);
|
|
184
|
+
tokenFuzzyCache.set(token, sim);
|
|
185
|
+
}
|
|
186
|
+
if (sim > 0) {
|
|
187
|
+
const idf = tokenIdfFn(token);
|
|
188
|
+
fuzzyScore += fuzzyMatchBonus * idf * sim;
|
|
189
|
+
fuzzyMatchedWords++;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
if (fuzzyMatchedWords === 0 && unmatchedTokenIndices.length === entityTokens.length) {
|
|
193
|
+
const collapsedEntity = normalizeFuzzyTerm(entityName);
|
|
194
|
+
if (collapsedEntity.length >= MIN_FUZZY_LENGTH) {
|
|
195
|
+
const sim = bestFuzzyMatch(collapsedEntity, collapsedContentTerms, FUZZY_THRESHOLD);
|
|
196
|
+
if (sim > 0) {
|
|
197
|
+
let idfSum = 0;
|
|
198
|
+
for (const token of entityTokens) idfSum += tokenIdfFn(token);
|
|
199
|
+
fuzzyScore = fuzzyMatchBonus * sim * idfSum;
|
|
200
|
+
fuzzyMatchedWords = entityTokens.length;
|
|
201
|
+
return { fuzzyScore: Math.round(fuzzyScore * 10) / 10, fuzzyMatchedWords, isWholeTermMatch: true };
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
return { fuzzyScore: Math.round(fuzzyScore * 10) / 10, fuzzyMatchedWords, isWholeTermMatch: false };
|
|
206
|
+
}
|
|
207
|
+
var MIN_FUZZY_LENGTH, FUZZY_THRESHOLD, MAX_LENGTH_DELTA;
|
|
136
208
|
var init_levenshtein = __esm({
|
|
137
209
|
"src/core/shared/levenshtein.ts"() {
|
|
138
210
|
"use strict";
|
|
211
|
+
MIN_FUZZY_LENGTH = 4;
|
|
212
|
+
FUZZY_THRESHOLD = 0.8;
|
|
213
|
+
MAX_LENGTH_DELTA = 2;
|
|
139
214
|
}
|
|
140
215
|
});
|
|
141
216
|
|
|
@@ -482,7 +557,7 @@ async function semanticSearch(query, limit = 10) {
|
|
|
482
557
|
if (!db4) {
|
|
483
558
|
throw new Error("Embeddings database not initialized. Call setEmbeddingsDatabase() first.");
|
|
484
559
|
}
|
|
485
|
-
const queryEmbedding = await
|
|
560
|
+
const queryEmbedding = await embedTextCached(query);
|
|
486
561
|
const rows = db4.prepare("SELECT path, embedding FROM note_embeddings").all();
|
|
487
562
|
const scored = [];
|
|
488
563
|
for (const row of rows) {
|
|
@@ -858,6 +933,137 @@ function hasEntityEmbeddingsIndex() {
|
|
|
858
933
|
function getEntityEmbeddingsMap() {
|
|
859
934
|
return entityEmbeddingsMap;
|
|
860
935
|
}
|
|
936
|
+
function getInferredCategory(entityName) {
|
|
937
|
+
return inferredCategoriesMap.get(entityName);
|
|
938
|
+
}
|
|
939
|
+
function ensureInferredCategoriesTable() {
|
|
940
|
+
const db4 = getDb();
|
|
941
|
+
if (!db4) return;
|
|
942
|
+
db4.exec(`
|
|
943
|
+
CREATE TABLE IF NOT EXISTS inferred_categories (
|
|
944
|
+
entity_name TEXT PRIMARY KEY,
|
|
945
|
+
category TEXT NOT NULL,
|
|
946
|
+
confidence REAL NOT NULL,
|
|
947
|
+
source TEXT NOT NULL DEFAULT 'centroid',
|
|
948
|
+
updated_at INTEGER NOT NULL
|
|
949
|
+
)
|
|
950
|
+
`);
|
|
951
|
+
}
|
|
952
|
+
function loadInferredCategories() {
|
|
953
|
+
const db4 = getDb();
|
|
954
|
+
inferredCategoriesMap = /* @__PURE__ */ new Map();
|
|
955
|
+
if (!db4) return inferredCategoriesMap;
|
|
956
|
+
try {
|
|
957
|
+
ensureInferredCategoriesTable();
|
|
958
|
+
const rows = db4.prepare(`
|
|
959
|
+
SELECT entity_name, category, confidence
|
|
960
|
+
FROM inferred_categories
|
|
961
|
+
WHERE source = 'centroid'
|
|
962
|
+
`).all();
|
|
963
|
+
for (const row of rows) {
|
|
964
|
+
inferredCategoriesMap.set(row.entity_name, {
|
|
965
|
+
entityName: row.entity_name,
|
|
966
|
+
category: row.category,
|
|
967
|
+
confidence: row.confidence
|
|
968
|
+
});
|
|
969
|
+
}
|
|
970
|
+
} catch {
|
|
971
|
+
inferredCategoriesMap = /* @__PURE__ */ new Map();
|
|
972
|
+
}
|
|
973
|
+
return inferredCategoriesMap;
|
|
974
|
+
}
|
|
975
|
+
function saveInferredCategories(categories) {
|
|
976
|
+
const db4 = getDb();
|
|
977
|
+
inferredCategoriesMap = new Map(categories);
|
|
978
|
+
if (!db4) return;
|
|
979
|
+
ensureInferredCategoriesTable();
|
|
980
|
+
const now = Date.now();
|
|
981
|
+
const clearStmt = db4.prepare(`DELETE FROM inferred_categories WHERE source = 'centroid'`);
|
|
982
|
+
const insertStmt = db4.prepare(`
|
|
983
|
+
INSERT OR REPLACE INTO inferred_categories
|
|
984
|
+
(entity_name, category, confidence, source, updated_at)
|
|
985
|
+
VALUES (?, ?, ?, 'centroid', ?)
|
|
986
|
+
`);
|
|
987
|
+
const txn = db4.transaction(() => {
|
|
988
|
+
clearStmt.run();
|
|
989
|
+
for (const inferred of categories.values()) {
|
|
990
|
+
insertStmt.run(
|
|
991
|
+
inferred.entityName,
|
|
992
|
+
inferred.category,
|
|
993
|
+
inferred.confidence,
|
|
994
|
+
now
|
|
995
|
+
);
|
|
996
|
+
}
|
|
997
|
+
});
|
|
998
|
+
txn();
|
|
999
|
+
}
|
|
1000
|
+
function normalizeVector(vector) {
|
|
1001
|
+
let magnitude = 0;
|
|
1002
|
+
for (let i = 0; i < vector.length; i++) {
|
|
1003
|
+
magnitude += vector[i] * vector[i];
|
|
1004
|
+
}
|
|
1005
|
+
if (magnitude === 0) return vector;
|
|
1006
|
+
const normalized = new Float32Array(vector.length);
|
|
1007
|
+
const scale = 1 / Math.sqrt(magnitude);
|
|
1008
|
+
for (let i = 0; i < vector.length; i++) {
|
|
1009
|
+
normalized[i] = vector[i] * scale;
|
|
1010
|
+
}
|
|
1011
|
+
return normalized;
|
|
1012
|
+
}
|
|
1013
|
+
function classifyUncategorizedEntities(entitiesWithTypes, threshold = 0.45) {
|
|
1014
|
+
const embeddings = getEmbMap();
|
|
1015
|
+
const categoryEmbeddings = /* @__PURE__ */ new Map();
|
|
1016
|
+
for (const { entity, category } of entitiesWithTypes) {
|
|
1017
|
+
if (category === "other") continue;
|
|
1018
|
+
const embedding = embeddings.get(entity.name);
|
|
1019
|
+
if (!embedding) continue;
|
|
1020
|
+
const existing = categoryEmbeddings.get(category) ?? [];
|
|
1021
|
+
existing.push(embedding);
|
|
1022
|
+
categoryEmbeddings.set(category, existing);
|
|
1023
|
+
}
|
|
1024
|
+
const centroids = /* @__PURE__ */ new Map();
|
|
1025
|
+
for (const [category, vectors] of categoryEmbeddings.entries()) {
|
|
1026
|
+
if (vectors.length < 3) continue;
|
|
1027
|
+
const centroid = new Float32Array(vectors[0].length);
|
|
1028
|
+
for (const vector of vectors) {
|
|
1029
|
+
for (let i = 0; i < vector.length; i++) {
|
|
1030
|
+
centroid[i] += vector[i];
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
for (let i = 0; i < centroid.length; i++) {
|
|
1034
|
+
centroid[i] /= vectors.length;
|
|
1035
|
+
}
|
|
1036
|
+
centroids.set(category, normalizeVector(centroid));
|
|
1037
|
+
}
|
|
1038
|
+
const inferred = /* @__PURE__ */ new Map();
|
|
1039
|
+
if (centroids.size === 0) {
|
|
1040
|
+
inferredCategoriesMap = inferred;
|
|
1041
|
+
return inferred;
|
|
1042
|
+
}
|
|
1043
|
+
for (const { entity, category } of entitiesWithTypes) {
|
|
1044
|
+
if (category !== "other") continue;
|
|
1045
|
+
const embedding = embeddings.get(entity.name);
|
|
1046
|
+
if (!embedding) continue;
|
|
1047
|
+
let bestCategory = null;
|
|
1048
|
+
let bestSimilarity = -1;
|
|
1049
|
+
for (const [candidateCategory, centroid] of centroids.entries()) {
|
|
1050
|
+
const similarity = cosineSimilarity(embedding, centroid);
|
|
1051
|
+
if (similarity > bestSimilarity) {
|
|
1052
|
+
bestSimilarity = similarity;
|
|
1053
|
+
bestCategory = candidateCategory;
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
if (bestCategory && bestSimilarity >= threshold) {
|
|
1057
|
+
inferred.set(entity.name, {
|
|
1058
|
+
entityName: entity.name,
|
|
1059
|
+
category: bestCategory,
|
|
1060
|
+
confidence: Math.round(bestSimilarity * 1e3) / 1e3
|
|
1061
|
+
});
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
inferredCategoriesMap = inferred;
|
|
1065
|
+
return inferred;
|
|
1066
|
+
}
|
|
861
1067
|
function loadEntityEmbeddingsToMemory() {
|
|
862
1068
|
const db4 = getDb();
|
|
863
1069
|
if (!db4) return;
|
|
@@ -877,6 +1083,7 @@ function loadEntityEmbeddingsToMemory() {
|
|
|
877
1083
|
}
|
|
878
1084
|
} catch {
|
|
879
1085
|
}
|
|
1086
|
+
loadInferredCategories();
|
|
880
1087
|
}
|
|
881
1088
|
function loadNoteEmbeddingsForPaths(paths) {
|
|
882
1089
|
const db4 = getDb();
|
|
@@ -909,7 +1116,7 @@ function getEntityEmbeddingsCount() {
|
|
|
909
1116
|
return 0;
|
|
910
1117
|
}
|
|
911
1118
|
}
|
|
912
|
-
var MODEL_REGISTRY, DEFAULT_MODEL, activeModelConfig, MAX_FILE_SIZE2, db, pipeline, initPromise, embeddingsBuilding, embeddingCache, EMBEDDING_CACHE_MAX, entityEmbeddingsMap, EMBEDDING_TEXT_VERSION;
|
|
1119
|
+
var MODEL_REGISTRY, DEFAULT_MODEL, activeModelConfig, MAX_FILE_SIZE2, db, pipeline, initPromise, embeddingsBuilding, embeddingCache, EMBEDDING_CACHE_MAX, entityEmbeddingsMap, inferredCategoriesMap, EMBEDDING_TEXT_VERSION;
|
|
913
1120
|
var init_embeddings = __esm({
|
|
914
1121
|
"src/core/read/embeddings.ts"() {
|
|
915
1122
|
"use strict";
|
|
@@ -932,6 +1139,7 @@ var init_embeddings = __esm({
|
|
|
932
1139
|
embeddingCache = /* @__PURE__ */ new Map();
|
|
933
1140
|
EMBEDDING_CACHE_MAX = 500;
|
|
934
1141
|
entityEmbeddingsMap = /* @__PURE__ */ new Map();
|
|
1142
|
+
inferredCategoriesMap = /* @__PURE__ */ new Map();
|
|
935
1143
|
EMBEDDING_TEXT_VERSION = 2;
|
|
936
1144
|
}
|
|
937
1145
|
});
|
|
@@ -1470,6 +1678,14 @@ function tokenIdf(token, coocIndex) {
|
|
|
1470
1678
|
const rawIdf = Math.log((N + 1) / (df + 1));
|
|
1471
1679
|
return Math.max(0.5, Math.min(2.5, rawIdf));
|
|
1472
1680
|
}
|
|
1681
|
+
function entityRarity(entityName, coocIndex) {
|
|
1682
|
+
if (!coocIndex || coocIndex.totalNotesScanned === 0) return 1;
|
|
1683
|
+
const df = coocIndex.documentFrequency.get(entityName);
|
|
1684
|
+
if (df === void 0) return 1.3;
|
|
1685
|
+
const N = coocIndex.totalNotesScanned;
|
|
1686
|
+
const rarity = Math.log((N + 1) / (df + 1)) / Math.log(N + 1);
|
|
1687
|
+
return Math.max(0.7, Math.min(1.8, 0.7 + rarity * 1.1));
|
|
1688
|
+
}
|
|
1473
1689
|
function serializeCooccurrenceIndex(index) {
|
|
1474
1690
|
const serialized = {};
|
|
1475
1691
|
for (const [entity, assocs] of Object.entries(index.associations)) {
|
|
@@ -1546,9 +1762,16 @@ var init_cooccurrence = __esm({
|
|
|
1546
1762
|
});
|
|
1547
1763
|
|
|
1548
1764
|
// src/core/write/wikilinkFeedback.ts
|
|
1549
|
-
function
|
|
1550
|
-
const
|
|
1551
|
-
|
|
1765
|
+
function isAiConfigEntity(entityName) {
|
|
1766
|
+
const lower = entityName.toLowerCase();
|
|
1767
|
+
return AI_CONFIG_PATTERNS.some((p) => lower === p || lower.endsWith("/" + p));
|
|
1768
|
+
}
|
|
1769
|
+
function getEffectiveAlpha(entity) {
|
|
1770
|
+
return isAiConfigEntity(entity) ? AI_CONFIG_PRIOR_ALPHA : PRIOR_ALPHA;
|
|
1771
|
+
}
|
|
1772
|
+
function computePosteriorMean(weightedCorrect, weightedFp, priorAlpha = PRIOR_ALPHA, priorBeta = PRIOR_BETA) {
|
|
1773
|
+
const alpha = priorAlpha + weightedCorrect;
|
|
1774
|
+
const beta_ = priorBeta + weightedFp;
|
|
1552
1775
|
return alpha / (alpha + beta_);
|
|
1553
1776
|
}
|
|
1554
1777
|
function recordFeedback(stateDb2, entity, context, notePath, correct, confidence = 1, matchedTerm) {
|
|
@@ -1708,8 +1931,9 @@ function updateSuppressionList(stateDb2, now) {
|
|
|
1708
1931
|
WHERE datetime(updated_at, '+' || ? || ' days') <= datetime('now')`
|
|
1709
1932
|
).run(SUPPRESSION_TTL_DAYS);
|
|
1710
1933
|
for (const stat5 of weightedStats) {
|
|
1711
|
-
const
|
|
1712
|
-
const
|
|
1934
|
+
const effectiveAlpha = getEffectiveAlpha(stat5.entity);
|
|
1935
|
+
const posteriorMean = computePosteriorMean(stat5.weightedCorrect, stat5.weightedFp, effectiveAlpha);
|
|
1936
|
+
const totalObs = effectiveAlpha + stat5.weightedCorrect + PRIOR_BETA + stat5.weightedFp;
|
|
1713
1937
|
if (totalObs < SUPPRESSION_MIN_OBSERVATIONS) {
|
|
1714
1938
|
continue;
|
|
1715
1939
|
}
|
|
@@ -1748,8 +1972,9 @@ function isSuppressed(stateDb2, entity, folder, now) {
|
|
|
1748
1972
|
const stats = getWeightedFolderStats(stateDb2, entity, folder, now);
|
|
1749
1973
|
if (stats.rawTotal >= FOLDER_SUPPRESSION_MIN_COUNT) {
|
|
1750
1974
|
const folderCorrect = stats.weightedTotal - stats.weightedFp;
|
|
1751
|
-
const
|
|
1752
|
-
const
|
|
1975
|
+
const effectiveAlpha = getEffectiveAlpha(entity);
|
|
1976
|
+
const posteriorMean = computePosteriorMean(folderCorrect, stats.weightedFp, effectiveAlpha);
|
|
1977
|
+
const totalObs = effectiveAlpha + folderCorrect + PRIOR_BETA + stats.weightedFp;
|
|
1753
1978
|
if (totalObs >= SUPPRESSION_MIN_OBSERVATIONS && posteriorMean < SUPPRESSION_POSTERIOR_THRESHOLD) {
|
|
1754
1979
|
return true;
|
|
1755
1980
|
}
|
|
@@ -1819,12 +2044,17 @@ function getAllSuppressionPenalties(stateDb2, now) {
|
|
|
1819
2044
|
const penalties = /* @__PURE__ */ new Map();
|
|
1820
2045
|
const weightedStats = getWeightedEntityStats(stateDb2, now);
|
|
1821
2046
|
for (const stat5 of weightedStats) {
|
|
1822
|
-
const
|
|
1823
|
-
const
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
if (
|
|
1827
|
-
|
|
2047
|
+
const effectiveAlpha = getEffectiveAlpha(stat5.entity);
|
|
2048
|
+
const posteriorMean = computePosteriorMean(stat5.weightedCorrect, stat5.weightedFp, effectiveAlpha);
|
|
2049
|
+
const totalObs = effectiveAlpha + stat5.weightedCorrect + PRIOR_BETA + stat5.weightedFp;
|
|
2050
|
+
if (totalObs >= SUPPRESSION_MIN_OBSERVATIONS) {
|
|
2051
|
+
if (posteriorMean < SUPPRESSION_POSTERIOR_THRESHOLD) {
|
|
2052
|
+
const penalty = Math.round(MAX_SUPPRESSION_PENALTY * (1 - posteriorMean / SUPPRESSION_POSTERIOR_THRESHOLD));
|
|
2053
|
+
if (penalty < 0) {
|
|
2054
|
+
penalties.set(stat5.entity, penalty);
|
|
2055
|
+
}
|
|
2056
|
+
} else if (posteriorMean < SOFT_PENALTY_THRESHOLD) {
|
|
2057
|
+
penalties.set(stat5.entity, SOFT_PENALTY);
|
|
1828
2058
|
}
|
|
1829
2059
|
}
|
|
1830
2060
|
}
|
|
@@ -2106,7 +2336,9 @@ function getLayerContributionTimeseries(stateDb2, granularity = "day", daysBack
|
|
|
2106
2336
|
const breakdown = JSON.parse(row.breakdown_json);
|
|
2107
2337
|
const layerMap = {
|
|
2108
2338
|
contentMatch: breakdown.contentMatch,
|
|
2339
|
+
fuzzyMatch: breakdown.fuzzyMatch ?? 0,
|
|
2109
2340
|
cooccurrenceBoost: breakdown.cooccurrenceBoost,
|
|
2341
|
+
rarityAdjustment: breakdown.rarityAdjustment ?? 0,
|
|
2110
2342
|
typeBoost: breakdown.typeBoost,
|
|
2111
2343
|
contextBoost: breakdown.contextBoost,
|
|
2112
2344
|
recencyBoost: breakdown.recencyBoost,
|
|
@@ -2140,7 +2372,9 @@ function getExtendedDashboardData(stateDb2) {
|
|
|
2140
2372
|
const layerSums = {};
|
|
2141
2373
|
const LAYER_NAMES = [
|
|
2142
2374
|
"contentMatch",
|
|
2375
|
+
"fuzzyMatch",
|
|
2143
2376
|
"cooccurrenceBoost",
|
|
2377
|
+
"rarityAdjustment",
|
|
2144
2378
|
"typeBoost",
|
|
2145
2379
|
"contextBoost",
|
|
2146
2380
|
"recencyBoost",
|
|
@@ -2214,16 +2448,31 @@ function getExtendedDashboardData(stateDb2) {
|
|
|
2214
2448
|
suppressionChanges
|
|
2215
2449
|
};
|
|
2216
2450
|
}
|
|
2217
|
-
var PRIOR_ALPHA, PRIOR_BETA, SUPPRESSION_POSTERIOR_THRESHOLD, SUPPRESSION_MIN_OBSERVATIONS, MAX_SUPPRESSION_PENALTY, FEEDBACK_BOOST_MIN_SAMPLES, FOLDER_SUPPRESSION_MIN_COUNT, SUPPRESSION_TTL_DAYS, FEEDBACK_DECAY_HALF_LIFE_DAYS, FEEDBACK_DECAY_LAMBDA, FEEDBACK_BOOST_TIERS, TIER_LABELS;
|
|
2451
|
+
var PRIOR_ALPHA, PRIOR_BETA, SUPPRESSION_POSTERIOR_THRESHOLD, SUPPRESSION_MIN_OBSERVATIONS, MAX_SUPPRESSION_PENALTY, SOFT_PENALTY_THRESHOLD, SOFT_PENALTY, AI_CONFIG_PATTERNS, AI_CONFIG_PRIOR_ALPHA, FEEDBACK_BOOST_MIN_SAMPLES, FOLDER_SUPPRESSION_MIN_COUNT, SUPPRESSION_TTL_DAYS, FEEDBACK_DECAY_HALF_LIFE_DAYS, FEEDBACK_DECAY_LAMBDA, FEEDBACK_BOOST_TIERS, TIER_LABELS;
|
|
2218
2452
|
var init_wikilinkFeedback = __esm({
|
|
2219
2453
|
"src/core/write/wikilinkFeedback.ts"() {
|
|
2220
2454
|
"use strict";
|
|
2221
2455
|
init_wikilinks();
|
|
2222
|
-
PRIOR_ALPHA =
|
|
2456
|
+
PRIOR_ALPHA = 4;
|
|
2223
2457
|
PRIOR_BETA = 1;
|
|
2224
|
-
SUPPRESSION_POSTERIOR_THRESHOLD = 0.
|
|
2225
|
-
SUPPRESSION_MIN_OBSERVATIONS =
|
|
2458
|
+
SUPPRESSION_POSTERIOR_THRESHOLD = 0.45;
|
|
2459
|
+
SUPPRESSION_MIN_OBSERVATIONS = 15;
|
|
2226
2460
|
MAX_SUPPRESSION_PENALTY = -15;
|
|
2461
|
+
SOFT_PENALTY_THRESHOLD = 0.55;
|
|
2462
|
+
SOFT_PENALTY = -5;
|
|
2463
|
+
AI_CONFIG_PATTERNS = [
|
|
2464
|
+
"claude.md",
|
|
2465
|
+
"cursor.md",
|
|
2466
|
+
".cursorrules",
|
|
2467
|
+
"copilot-instructions.md",
|
|
2468
|
+
"agents.md",
|
|
2469
|
+
".windsurfrules",
|
|
2470
|
+
".aiderignore",
|
|
2471
|
+
".aider.conf.yml",
|
|
2472
|
+
"cline_docs",
|
|
2473
|
+
"codex.md"
|
|
2474
|
+
];
|
|
2475
|
+
AI_CONFIG_PRIOR_ALPHA = 2;
|
|
2227
2476
|
FEEDBACK_BOOST_MIN_SAMPLES = 3;
|
|
2228
2477
|
FOLDER_SUPPRESSION_MIN_COUNT = 5;
|
|
2229
2478
|
SUPPRESSION_TTL_DAYS = 30;
|
|
@@ -3001,7 +3250,9 @@ import {
|
|
|
3001
3250
|
getEntityByName,
|
|
3002
3251
|
getEntitiesByAlias,
|
|
3003
3252
|
searchEntities as searchEntitiesDb,
|
|
3004
|
-
STOPWORDS_EN as STOPWORDS_EN2
|
|
3253
|
+
STOPWORDS_EN as STOPWORDS_EN2,
|
|
3254
|
+
IMPLICIT_EXCLUDE_WORDS,
|
|
3255
|
+
COMMON_ENGLISH_WORDS
|
|
3005
3256
|
} from "@velvetmonkey/vault-core";
|
|
3006
3257
|
import path11 from "path";
|
|
3007
3258
|
import * as fs7 from "fs/promises";
|
|
@@ -3362,12 +3613,33 @@ function isLikelyArticleTitle(name) {
|
|
|
3362
3613
|
}
|
|
3363
3614
|
return false;
|
|
3364
3615
|
}
|
|
3365
|
-
function getTypeBoost(category, customCategories) {
|
|
3616
|
+
function getTypeBoost(category, customCategories, entityName) {
|
|
3366
3617
|
if (customCategories?.[category]?.type_boost != null) {
|
|
3367
3618
|
return customCategories[category].type_boost;
|
|
3368
3619
|
}
|
|
3620
|
+
if (category === "other" && entityName) {
|
|
3621
|
+
const inferred = getInferredCategory(entityName);
|
|
3622
|
+
if (inferred) {
|
|
3623
|
+
return TYPE_BOOST[inferred.category] || 0;
|
|
3624
|
+
}
|
|
3625
|
+
}
|
|
3369
3626
|
return TYPE_BOOST[category] || 0;
|
|
3370
3627
|
}
|
|
3628
|
+
function isCommonWordFalsePositive(entityName, rawContent, category) {
|
|
3629
|
+
const nameTokens = tokenize(entityName);
|
|
3630
|
+
if (nameTokens.length !== 1) return false;
|
|
3631
|
+
const EXEMPT_CATEGORIES = /* @__PURE__ */ new Set(["people", "animals", "projects", "organizations"]);
|
|
3632
|
+
if (EXEMPT_CATEGORIES.has(category)) return false;
|
|
3633
|
+
const lowerName = entityName.toLowerCase();
|
|
3634
|
+
if (!IMPLICIT_EXCLUDE_WORDS.has(lowerName) && !COMMON_ENGLISH_WORDS.has(lowerName)) return false;
|
|
3635
|
+
return !rawContent.includes(entityName);
|
|
3636
|
+
}
|
|
3637
|
+
function capScoreWithoutContentRelevance(score, contentRelevance, config) {
|
|
3638
|
+
if (contentRelevance < config.contentRelevanceFloor) {
|
|
3639
|
+
return Math.min(score, config.noRelevanceCap);
|
|
3640
|
+
}
|
|
3641
|
+
return score;
|
|
3642
|
+
}
|
|
3371
3643
|
function getCrossFolderBoost(entityPath, notePath) {
|
|
3372
3644
|
if (!entityPath || !notePath) return 0;
|
|
3373
3645
|
const entityParts = entityPath.split("/");
|
|
@@ -3412,64 +3684,107 @@ function getAdaptiveMinScore(contentLength, baseScore) {
|
|
|
3412
3684
|
}
|
|
3413
3685
|
return baseScore;
|
|
3414
3686
|
}
|
|
3415
|
-
function scoreNameAgainstContent(name, contentTokens, contentStems, config, coocIndex) {
|
|
3687
|
+
function scoreNameAgainstContent(name, contentTokens, contentStems, config, coocIndex, disableExact, disableStem) {
|
|
3416
3688
|
const nameTokens = tokenize(name);
|
|
3417
3689
|
if (nameTokens.length === 0) {
|
|
3418
|
-
return {
|
|
3690
|
+
return { exactScore: 0, stemScore: 0, lexicalScore: 0, matchedWords: 0, exactMatches: 0, totalTokens: 0, nameTokens: [], unmatchedTokenIndices: [] };
|
|
3419
3691
|
}
|
|
3420
3692
|
const nameStems = nameTokens.map((t) => stem(t));
|
|
3421
|
-
let
|
|
3693
|
+
let exactScore = 0;
|
|
3694
|
+
let stemScore = 0;
|
|
3422
3695
|
let matchedWords = 0;
|
|
3423
3696
|
let exactMatches = 0;
|
|
3697
|
+
const unmatchedTokenIndices = [];
|
|
3424
3698
|
for (let i = 0; i < nameTokens.length; i++) {
|
|
3425
3699
|
const token = nameTokens[i];
|
|
3426
3700
|
const nameStem = nameStems[i];
|
|
3427
3701
|
const idfWeight = coocIndex ? tokenIdf(token, coocIndex) : 1;
|
|
3428
|
-
if (contentTokens.has(token)) {
|
|
3429
|
-
|
|
3702
|
+
if (!disableExact && contentTokens.has(token)) {
|
|
3703
|
+
exactScore += config.exactMatchBonus * idfWeight;
|
|
3430
3704
|
matchedWords++;
|
|
3431
3705
|
exactMatches++;
|
|
3432
|
-
} else if (contentStems.has(nameStem)) {
|
|
3433
|
-
|
|
3706
|
+
} else if (!disableStem && contentStems.has(nameStem)) {
|
|
3707
|
+
stemScore += config.stemMatchBonus * idfWeight;
|
|
3434
3708
|
matchedWords++;
|
|
3709
|
+
} else {
|
|
3710
|
+
unmatchedTokenIndices.push(i);
|
|
3435
3711
|
}
|
|
3436
3712
|
}
|
|
3437
|
-
|
|
3438
|
-
return {
|
|
3713
|
+
const lexicalScore = Math.round((exactScore + stemScore) * 10) / 10;
|
|
3714
|
+
return { exactScore, stemScore, lexicalScore, matchedWords, exactMatches, totalTokens: nameTokens.length, nameTokens, unmatchedTokenIndices };
|
|
3439
3715
|
}
|
|
3440
|
-
function scoreEntity(entity, contentTokens, contentStems, config, coocIndex) {
|
|
3716
|
+
function scoreEntity(entity, contentTokens, contentStems, collapsedContentTerms, config, disabled, coocIndex, tokenFuzzyCache) {
|
|
3717
|
+
const zero = { contentMatch: 0, fuzzyMatch: 0, totalLexical: 0, matchedWords: 0, exactMatches: 0, totalTokens: 0 };
|
|
3441
3718
|
const entityName = getEntityName2(entity);
|
|
3442
3719
|
const aliases = getEntityAliases(entity);
|
|
3443
|
-
const
|
|
3444
|
-
|
|
3720
|
+
const disableExact = disabled.has("exact_match");
|
|
3721
|
+
const disableStem = disabled.has("stem_match");
|
|
3722
|
+
const disableFuzzy = disabled.has("fuzzy_match");
|
|
3723
|
+
const cache = tokenFuzzyCache ?? /* @__PURE__ */ new Map();
|
|
3724
|
+
const idfFn = (token) => coocIndex ? tokenIdf(token, coocIndex) : 1;
|
|
3725
|
+
const nameResult = scoreNameAgainstContent(entityName, contentTokens, contentStems, config, coocIndex, disableExact, disableStem);
|
|
3726
|
+
let bestAliasResult = { exactScore: 0, stemScore: 0, lexicalScore: 0, matchedWords: 0, exactMatches: 0, totalTokens: 0, nameTokens: [], unmatchedTokenIndices: [] };
|
|
3445
3727
|
for (const alias of aliases) {
|
|
3446
|
-
const aliasResult = scoreNameAgainstContent(alias, contentTokens, contentStems, config, coocIndex);
|
|
3447
|
-
if (aliasResult.
|
|
3728
|
+
const aliasResult = scoreNameAgainstContent(alias, contentTokens, contentStems, config, coocIndex, disableExact, disableStem);
|
|
3729
|
+
if (aliasResult.lexicalScore > bestAliasResult.lexicalScore) {
|
|
3448
3730
|
bestAliasResult = aliasResult;
|
|
3449
3731
|
}
|
|
3450
3732
|
}
|
|
3451
|
-
const bestResult = nameResult.
|
|
3452
|
-
let {
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3733
|
+
const bestResult = nameResult.lexicalScore >= bestAliasResult.lexicalScore ? nameResult : bestAliasResult;
|
|
3734
|
+
let { lexicalScore, matchedWords, exactMatches, totalTokens, nameTokens, unmatchedTokenIndices } = bestResult;
|
|
3735
|
+
const fuzzyTargetName = nameResult.lexicalScore >= bestAliasResult.lexicalScore ? entityName : aliases[0] ?? entityName;
|
|
3736
|
+
if (totalTokens === 0) return zero;
|
|
3737
|
+
if (!disableExact) {
|
|
3738
|
+
for (const alias of aliases) {
|
|
3739
|
+
const aliasLower = alias.toLowerCase();
|
|
3740
|
+
if (aliasLower.length >= 3 && !/\s/.test(aliasLower) && contentTokens.has(aliasLower)) {
|
|
3741
|
+
lexicalScore += FULL_ALIAS_MATCH_BONUS;
|
|
3742
|
+
break;
|
|
3743
|
+
}
|
|
3744
|
+
}
|
|
3745
|
+
}
|
|
3746
|
+
let fuzzyScore = 0;
|
|
3747
|
+
let fuzzyMatchedWords = 0;
|
|
3748
|
+
if (!disableFuzzy && unmatchedTokenIndices.length > 0) {
|
|
3749
|
+
const fuzzyResult = scoreFuzzyMatch(
|
|
3750
|
+
nameTokens,
|
|
3751
|
+
unmatchedTokenIndices,
|
|
3752
|
+
contentTokens,
|
|
3753
|
+
collapsedContentTerms,
|
|
3754
|
+
fuzzyTargetName,
|
|
3755
|
+
config.fuzzyMatchBonus,
|
|
3756
|
+
idfFn,
|
|
3757
|
+
cache
|
|
3758
|
+
);
|
|
3759
|
+
fuzzyScore = fuzzyResult.fuzzyScore;
|
|
3760
|
+
fuzzyMatchedWords = fuzzyResult.fuzzyMatchedWords;
|
|
3761
|
+
if (fuzzyResult.isWholeTermMatch) {
|
|
3762
|
+
matchedWords = totalTokens;
|
|
3763
|
+
} else {
|
|
3764
|
+
matchedWords += fuzzyMatchedWords;
|
|
3459
3765
|
}
|
|
3460
3766
|
}
|
|
3461
3767
|
if (totalTokens > 1) {
|
|
3462
3768
|
const matchRatio = matchedWords / totalTokens;
|
|
3463
3769
|
if (matchRatio < config.minMatchRatio) {
|
|
3464
|
-
return
|
|
3770
|
+
return zero;
|
|
3465
3771
|
}
|
|
3466
3772
|
}
|
|
3467
3773
|
if (config.requireMultipleMatches && totalTokens === 1) {
|
|
3468
|
-
if (exactMatches === 0) {
|
|
3469
|
-
return
|
|
3774
|
+
if (exactMatches === 0 && fuzzyMatchedWords === 0) {
|
|
3775
|
+
return zero;
|
|
3470
3776
|
}
|
|
3471
3777
|
}
|
|
3472
|
-
|
|
3778
|
+
const contentMatch = Math.round(lexicalScore * 10) / 10;
|
|
3779
|
+
const fuzzyMatch = Math.round(fuzzyScore * 10) / 10;
|
|
3780
|
+
return {
|
|
3781
|
+
contentMatch,
|
|
3782
|
+
fuzzyMatch,
|
|
3783
|
+
totalLexical: Math.round((contentMatch + fuzzyMatch) * 10) / 10,
|
|
3784
|
+
matchedWords,
|
|
3785
|
+
exactMatches,
|
|
3786
|
+
totalTokens
|
|
3787
|
+
};
|
|
3473
3788
|
}
|
|
3474
3789
|
function getEdgeWeightBoostScore(entityName, map) {
|
|
3475
3790
|
const avgWeight = map.get(entityName.toLowerCase());
|
|
@@ -3517,6 +3832,9 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3517
3832
|
if (contentTokens.size === 0) {
|
|
3518
3833
|
return emptyResult;
|
|
3519
3834
|
}
|
|
3835
|
+
const orderedContentTokens = [...rawTokens].filter((token) => token.length >= config.minWordLength && !STOPWORDS_EN2.has(token)).map(normalizeFuzzyTerm).filter((token) => token.length > 0);
|
|
3836
|
+
const collapsedContentTerms = disabled.has("fuzzy_match") ? /* @__PURE__ */ new Set() : buildCollapsedContentTerms(orderedContentTokens);
|
|
3837
|
+
const tokenFuzzyCache = /* @__PURE__ */ new Map();
|
|
3520
3838
|
const linkedEntities = excludeLinked ? extractLinkedEntities(content) : /* @__PURE__ */ new Set();
|
|
3521
3839
|
const noteFolder = notePath ? notePath.split("/")[0] : void 0;
|
|
3522
3840
|
const stateDb2 = getWriteStateDb();
|
|
@@ -3526,10 +3844,11 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3526
3844
|
const edgeWeightMap = stateDb2 ? getEntityEdgeWeightMap(stateDb2) : /* @__PURE__ */ new Map();
|
|
3527
3845
|
const scoredEntities = [];
|
|
3528
3846
|
const directlyMatchedEntities = /* @__PURE__ */ new Set();
|
|
3529
|
-
const
|
|
3847
|
+
const entitiesWithAnyScoringPath = /* @__PURE__ */ new Set();
|
|
3530
3848
|
for (const { entity, category } of entitiesWithTypes) {
|
|
3531
3849
|
const entityName = entity.name;
|
|
3532
3850
|
if (!entityName) continue;
|
|
3851
|
+
if (isCommonWordFalsePositive(entityName, content, category)) continue;
|
|
3533
3852
|
if (!disabled.has("length_filter") && entityName.length > MAX_ENTITY_LENGTH) {
|
|
3534
3853
|
continue;
|
|
3535
3854
|
}
|
|
@@ -3543,12 +3862,23 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3543
3862
|
const paths = correctedPairs.get(entityName.toLowerCase());
|
|
3544
3863
|
if (paths.has(notePath)) continue;
|
|
3545
3864
|
}
|
|
3546
|
-
const
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3865
|
+
const entityScore = disabled.has("exact_match") && disabled.has("stem_match") && disabled.has("fuzzy_match") ? { contentMatch: 0, fuzzyMatch: 0, totalLexical: 0, matchedWords: 0, exactMatches: 0, totalTokens: 0 } : scoreEntity(entity, contentTokens, contentStems, collapsedContentTerms, config, disabled, cooccurrenceIndex, tokenFuzzyCache);
|
|
3866
|
+
const contentScore = entityScore.contentMatch;
|
|
3867
|
+
const fuzzyMatchScore = entityScore.fuzzyMatch;
|
|
3868
|
+
const hasLexicalEvidence = entityScore.totalLexical > 0;
|
|
3869
|
+
let layerRarityAdjustment = 0;
|
|
3870
|
+
if (hasLexicalEvidence && !disabled.has("rarity")) {
|
|
3871
|
+
const multiplier = entityRarity(entityName, cooccurrenceIndex);
|
|
3872
|
+
if (multiplier > 1) {
|
|
3873
|
+
const raw = entityScore.totalLexical * (multiplier - 1);
|
|
3874
|
+
layerRarityAdjustment = Math.round(Math.min(5, raw) * 10) / 10;
|
|
3875
|
+
}
|
|
3550
3876
|
}
|
|
3551
|
-
|
|
3877
|
+
let score = entityScore.totalLexical + layerRarityAdjustment;
|
|
3878
|
+
if (hasLexicalEvidence) {
|
|
3879
|
+
entitiesWithAnyScoringPath.add(entityName);
|
|
3880
|
+
}
|
|
3881
|
+
const layerTypeBoost = disabled.has("type_boost") ? 0 : getTypeBoost(category, getConfig()?.custom_categories, entityName);
|
|
3552
3882
|
score += layerTypeBoost;
|
|
3553
3883
|
const layerContextBoost = disabled.has("context_boost") ? 0 : contextBoosts[category] || 0;
|
|
3554
3884
|
score += layerContextBoost;
|
|
@@ -3562,12 +3892,13 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3562
3892
|
score += layerFeedbackAdj;
|
|
3563
3893
|
const layerEdgeWeightBoost = disabled.has("edge_weight") ? 0 : getEdgeWeightBoostScore(entityName, edgeWeightMap);
|
|
3564
3894
|
score += layerEdgeWeightBoost;
|
|
3565
|
-
if (
|
|
3895
|
+
if (hasLexicalEvidence) {
|
|
3566
3896
|
directlyMatchedEntities.add(entityName);
|
|
3567
3897
|
}
|
|
3568
3898
|
const layerSuppressionPenalty = disabled.has("feedback") ? 0 : suppressionPenalties.get(entityName) ?? 0;
|
|
3569
3899
|
score += layerSuppressionPenalty;
|
|
3570
|
-
|
|
3900
|
+
score = capScoreWithoutContentRelevance(score, contentScore + fuzzyMatchScore, config);
|
|
3901
|
+
if (hasLexicalEvidence && score >= adaptiveMinScore) {
|
|
3571
3902
|
scoredEntities.push({
|
|
3572
3903
|
name: entityName,
|
|
3573
3904
|
path: entity.path || "",
|
|
@@ -3575,7 +3906,9 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3575
3906
|
category,
|
|
3576
3907
|
breakdown: {
|
|
3577
3908
|
contentMatch: contentScore,
|
|
3909
|
+
fuzzyMatch: fuzzyMatchScore,
|
|
3578
3910
|
cooccurrenceBoost: 0,
|
|
3911
|
+
rarityAdjustment: layerRarityAdjustment,
|
|
3579
3912
|
typeBoost: layerTypeBoost,
|
|
3580
3913
|
contextBoost: layerContextBoost,
|
|
3581
3914
|
recencyBoost: layerRecencyBoost,
|
|
@@ -3617,6 +3950,7 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3617
3950
|
for (const { entity, category } of entitiesWithTypes) {
|
|
3618
3951
|
const entityName = entity.name;
|
|
3619
3952
|
if (!entityName) continue;
|
|
3953
|
+
if (isCommonWordFalsePositive(entityName, content, category)) continue;
|
|
3620
3954
|
if (!disabled.has("length_filter") && entityName.length > MAX_ENTITY_LENGTH) continue;
|
|
3621
3955
|
if (!disabled.has("article_filter") && isLikelyArticleTitle(entityName)) continue;
|
|
3622
3956
|
if (linkedEntities.has(entityName.toLowerCase())) continue;
|
|
@@ -3628,19 +3962,21 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3628
3962
|
if (existing) {
|
|
3629
3963
|
existing.score += boost;
|
|
3630
3964
|
existing.breakdown.cooccurrenceBoost += boost;
|
|
3965
|
+
const existingContentRelevance = existing.breakdown.contentMatch + existing.breakdown.fuzzyMatch + (existing.breakdown.semanticBoost ?? 0);
|
|
3966
|
+
existing.score = capScoreWithoutContentRelevance(existing.score, existingContentRelevance, config);
|
|
3631
3967
|
} else {
|
|
3632
3968
|
const entityTokens = tokenize(entityName);
|
|
3633
3969
|
const hasContentOverlap = entityTokens.some(
|
|
3634
3970
|
(token) => contentTokens.has(token) || contentStems.has(stem(token))
|
|
3635
3971
|
);
|
|
3636
|
-
const strongCooccurrence = boost >=
|
|
3972
|
+
const strongCooccurrence = boost >= config.minCooccurrenceGate;
|
|
3637
3973
|
if (!hasContentOverlap && !strongCooccurrence) {
|
|
3638
3974
|
continue;
|
|
3639
3975
|
}
|
|
3640
3976
|
if (hasContentOverlap || strongCooccurrence) {
|
|
3641
|
-
|
|
3977
|
+
entitiesWithAnyScoringPath.add(entityName);
|
|
3642
3978
|
}
|
|
3643
|
-
const typeBoost = disabled.has("type_boost") ? 0 : getTypeBoost(category, getConfig()?.custom_categories);
|
|
3979
|
+
const typeBoost = disabled.has("type_boost") ? 0 : getTypeBoost(category, getConfig()?.custom_categories, entityName);
|
|
3644
3980
|
const contextBoost = disabled.has("context_boost") ? 0 : contextBoosts[category] || 0;
|
|
3645
3981
|
const recencyBoostVal = hasContentOverlap && !disabled.has("recency") ? recencyIndex ? getRecencyBoost(entityName, recencyIndex) : 0 : 0;
|
|
3646
3982
|
const rawCrossFolderBoost = disabled.has("cross_folder") ? 0 : notePath && entity.path ? getCrossFolderBoost(entity.path, notePath) : 0;
|
|
@@ -3650,7 +3986,9 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3650
3986
|
const feedbackAdj = disabled.has("feedback") ? 0 : feedbackBoosts.get(entityName) ?? 0;
|
|
3651
3987
|
const edgeWeightBoost = disabled.has("edge_weight") ? 0 : getEdgeWeightBoostScore(entityName, edgeWeightMap);
|
|
3652
3988
|
const suppPenalty = disabled.has("feedback") ? 0 : suppressionPenalties.get(entityName) ?? 0;
|
|
3653
|
-
|
|
3989
|
+
let totalBoost = boost + typeBoost + contextBoost + recencyBoostVal + crossFolderBoost + hubBoost + feedbackAdj + edgeWeightBoost + suppPenalty;
|
|
3990
|
+
const coocContentRelevance = hasContentOverlap ? 5 : 0;
|
|
3991
|
+
totalBoost = capScoreWithoutContentRelevance(totalBoost, coocContentRelevance, config);
|
|
3654
3992
|
const effectiveMinScore = !hasContentOverlap ? Math.max(adaptiveMinScore, 7) : adaptiveMinScore;
|
|
3655
3993
|
if (totalBoost >= effectiveMinScore) {
|
|
3656
3994
|
scoredEntities.push({
|
|
@@ -3660,7 +3998,9 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3660
3998
|
category,
|
|
3661
3999
|
breakdown: {
|
|
3662
4000
|
contentMatch: 0,
|
|
4001
|
+
fuzzyMatch: 0,
|
|
3663
4002
|
cooccurrenceBoost: boost,
|
|
4003
|
+
rarityAdjustment: 0,
|
|
3664
4004
|
typeBoost,
|
|
3665
4005
|
contextBoost,
|
|
3666
4006
|
recencyBoost: recencyBoostVal,
|
|
@@ -3688,20 +4028,21 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3688
4028
|
);
|
|
3689
4029
|
for (const match of semanticMatches) {
|
|
3690
4030
|
if (match.similarity < SEMANTIC_MIN_SIMILARITY) continue;
|
|
4031
|
+
const semanticEntityWithType = entitiesWithTypes.find(
|
|
4032
|
+
(et) => et.entity.name === match.entityName
|
|
4033
|
+
);
|
|
4034
|
+
if (!semanticEntityWithType) continue;
|
|
4035
|
+
if (isCommonWordFalsePositive(match.entityName, content, semanticEntityWithType.category)) continue;
|
|
3691
4036
|
const boost = match.similarity * SEMANTIC_MAX_BOOST * semanticStrictnessMultiplier;
|
|
3692
4037
|
const existing = scoredEntities.find((e) => e.name === match.entityName);
|
|
3693
4038
|
if (existing) {
|
|
3694
4039
|
existing.score += boost;
|
|
3695
4040
|
existing.breakdown.semanticBoost = boost;
|
|
3696
4041
|
} else if (!linkedEntities.has(match.entityName.toLowerCase())) {
|
|
3697
|
-
const entityWithType = entitiesWithTypes.find(
|
|
3698
|
-
(et) => et.entity.name === match.entityName
|
|
3699
|
-
);
|
|
3700
|
-
if (!entityWithType) continue;
|
|
3701
4042
|
if (!disabled.has("length_filter") && match.entityName.length > MAX_ENTITY_LENGTH) continue;
|
|
3702
4043
|
if (!disabled.has("article_filter") && isLikelyArticleTitle(match.entityName)) continue;
|
|
3703
|
-
const { entity, category } =
|
|
3704
|
-
const layerTypeBoost = disabled.has("type_boost") ? 0 : getTypeBoost(category, getConfig()?.custom_categories);
|
|
4044
|
+
const { entity, category } = semanticEntityWithType;
|
|
4045
|
+
const layerTypeBoost = disabled.has("type_boost") ? 0 : getTypeBoost(category, getConfig()?.custom_categories, match.entityName);
|
|
3705
4046
|
const layerContextBoost = disabled.has("context_boost") ? 0 : contextBoosts[category] || 0;
|
|
3706
4047
|
const layerHubBoost = disabled.has("hub_boost") ? 0 : getHubBoost(entity);
|
|
3707
4048
|
const layerCrossFolderBoost = disabled.has("cross_folder") ? 0 : notePath && entity.path ? getCrossFolderBoost(entity.path, notePath) : 0;
|
|
@@ -3717,7 +4058,9 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3717
4058
|
category,
|
|
3718
4059
|
breakdown: {
|
|
3719
4060
|
contentMatch: 0,
|
|
4061
|
+
fuzzyMatch: 0,
|
|
3720
4062
|
cooccurrenceBoost: 0,
|
|
4063
|
+
rarityAdjustment: 0,
|
|
3721
4064
|
typeBoost: layerTypeBoost,
|
|
3722
4065
|
contextBoost: layerContextBoost,
|
|
3723
4066
|
recencyBoost: 0,
|
|
@@ -3729,16 +4072,22 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3729
4072
|
edgeWeightBoost: layerEdgeWeightBoost
|
|
3730
4073
|
}
|
|
3731
4074
|
});
|
|
3732
|
-
|
|
4075
|
+
entitiesWithAnyScoringPath.add(match.entityName);
|
|
3733
4076
|
}
|
|
3734
4077
|
}
|
|
3735
4078
|
}
|
|
3736
4079
|
} catch {
|
|
3737
4080
|
}
|
|
3738
4081
|
}
|
|
3739
|
-
const
|
|
3740
|
-
|
|
3741
|
-
|
|
4082
|
+
for (const entry of scoredEntities) {
|
|
4083
|
+
const contentRelevance = entry.breakdown.contentMatch + entry.breakdown.fuzzyMatch + (entry.breakdown.semanticBoost ?? 0);
|
|
4084
|
+
entry.score = capScoreWithoutContentRelevance(entry.score, contentRelevance, config);
|
|
4085
|
+
}
|
|
4086
|
+
const relevantEntities = scoredEntities.filter((e) => {
|
|
4087
|
+
if (!entitiesWithAnyScoringPath.has(e.name)) return false;
|
|
4088
|
+
if (config.minContentMatch > 0 && e.breakdown.contentMatch < config.minContentMatch) return false;
|
|
4089
|
+
return true;
|
|
4090
|
+
});
|
|
3742
4091
|
if (relevantEntities.length === 0) {
|
|
3743
4092
|
return emptyResult;
|
|
3744
4093
|
}
|
|
@@ -3775,7 +4124,7 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3775
4124
|
);
|
|
3776
4125
|
}
|
|
3777
4126
|
for (const e of scoredEntities) {
|
|
3778
|
-
if (!
|
|
4127
|
+
if (!entitiesWithAnyScoringPath.has(e.name)) continue;
|
|
3779
4128
|
if (relevantEntities.some((r) => r.name === e.name)) continue;
|
|
3780
4129
|
insertStmt.run(
|
|
3781
4130
|
now,
|
|
@@ -3809,7 +4158,7 @@ async function suggestRelatedLinks(content, options = {}) {
|
|
|
3809
4158
|
const MIN_SUFFIX_CONTENT = noteContext === "daily" ? 2 : 3;
|
|
3810
4159
|
const suffixCandidates = topEntries.filter((e) => {
|
|
3811
4160
|
if (e.score < MIN_SUFFIX_SCORE) return false;
|
|
3812
|
-
if (
|
|
4161
|
+
if (e.breakdown.contentMatch < MIN_SUFFIX_CONTENT) return false;
|
|
3813
4162
|
if (!disabled.has("fatigue")) {
|
|
3814
4163
|
const escapedName = e.name.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
3815
4164
|
const suffixPattern = new RegExp(`\u2192 .*\\[\\[${escapedName}\\]\\]`, "g");
|
|
@@ -4029,6 +4378,8 @@ async function applyProactiveSuggestions(filePath, vaultPath2, suggestions, conf
|
|
|
4029
4378
|
if (stateDb2 && isSuppressed(stateDb2, candidate.entity)) continue;
|
|
4030
4379
|
if (stateDb2) {
|
|
4031
4380
|
const entityObj = getEntityByName(stateDb2, candidate.entity);
|
|
4381
|
+
const category = entityObj?.category ?? "other";
|
|
4382
|
+
if (isCommonWordFalsePositive(candidate.entity, content, category)) continue;
|
|
4032
4383
|
if (entityObj) {
|
|
4033
4384
|
entityObjects.push({
|
|
4034
4385
|
name: entityObj.name,
|
|
@@ -4088,6 +4439,7 @@ var init_wikilinks = __esm({
|
|
|
4088
4439
|
init_recency();
|
|
4089
4440
|
init_embeddings();
|
|
4090
4441
|
init_edgeWeights();
|
|
4442
|
+
init_levenshtein();
|
|
4091
4443
|
init_vault_scope();
|
|
4092
4444
|
moduleStateDb4 = null;
|
|
4093
4445
|
moduleConfig = null;
|
|
@@ -4149,8 +4501,14 @@ var init_wikilinks = __esm({
|
|
|
4149
4501
|
// Single-word entities need multiple content matches
|
|
4150
4502
|
stemMatchBonus: 3,
|
|
4151
4503
|
// Lower bonus for stem-only matches
|
|
4152
|
-
exactMatchBonus: 10
|
|
4504
|
+
exactMatchBonus: 10,
|
|
4153
4505
|
// Standard bonus for exact matches
|
|
4506
|
+
fuzzyMatchBonus: 2,
|
|
4507
|
+
// Low fuzzy bonus — supplementary signal only
|
|
4508
|
+
contentRelevanceFloor: 5,
|
|
4509
|
+
noRelevanceCap: 12,
|
|
4510
|
+
minCooccurrenceGate: 6,
|
|
4511
|
+
minContentMatch: 3
|
|
4154
4512
|
},
|
|
4155
4513
|
balanced: {
|
|
4156
4514
|
minWordLength: 3,
|
|
@@ -4161,8 +4519,14 @@ var init_wikilinks = __esm({
|
|
|
4161
4519
|
requireMultipleMatches: false,
|
|
4162
4520
|
stemMatchBonus: 5,
|
|
4163
4521
|
// Standard bonus for stem matches
|
|
4164
|
-
exactMatchBonus: 10
|
|
4522
|
+
exactMatchBonus: 10,
|
|
4165
4523
|
// Standard bonus for exact matches
|
|
4524
|
+
fuzzyMatchBonus: 4,
|
|
4525
|
+
// Moderate fuzzy bonus
|
|
4526
|
+
contentRelevanceFloor: 5,
|
|
4527
|
+
noRelevanceCap: 10,
|
|
4528
|
+
minCooccurrenceGate: 5,
|
|
4529
|
+
minContentMatch: 2
|
|
4166
4530
|
},
|
|
4167
4531
|
aggressive: {
|
|
4168
4532
|
minWordLength: 3,
|
|
@@ -4173,8 +4537,14 @@ var init_wikilinks = __esm({
|
|
|
4173
4537
|
requireMultipleMatches: false,
|
|
4174
4538
|
stemMatchBonus: 6,
|
|
4175
4539
|
// Higher bonus for stem matches
|
|
4176
|
-
exactMatchBonus: 10
|
|
4540
|
+
exactMatchBonus: 10,
|
|
4177
4541
|
// Standard bonus for exact matches
|
|
4542
|
+
fuzzyMatchBonus: 5,
|
|
4543
|
+
// Higher fuzzy bonus — discovery mode
|
|
4544
|
+
contentRelevanceFloor: 3,
|
|
4545
|
+
noRelevanceCap: 18,
|
|
4546
|
+
minCooccurrenceGate: 3,
|
|
4547
|
+
minContentMatch: 0
|
|
4178
4548
|
}
|
|
4179
4549
|
};
|
|
4180
4550
|
TYPE_BOOST = {
|
|
@@ -4385,6 +4755,103 @@ var init_proactiveQueue = __esm({
|
|
|
4385
4755
|
}
|
|
4386
4756
|
});
|
|
4387
4757
|
|
|
4758
|
+
// src/generated/tool-embeddings.generated.ts
|
|
4759
|
+
var tool_embeddings_generated_exports = {};
|
|
4760
|
+
__export(tool_embeddings_generated_exports, {
|
|
4761
|
+
TOOL_EMBEDDINGS_MANIFEST: () => TOOL_EMBEDDINGS_MANIFEST
|
|
4762
|
+
});
|
|
4763
|
+
var TOOL_EMBEDDINGS_MANIFEST;
|
|
4764
|
+
var init_tool_embeddings_generated = __esm({
|
|
4765
|
+
"src/generated/tool-embeddings.generated.ts"() {
|
|
4766
|
+
"use strict";
|
|
4767
|
+
TOOL_EMBEDDINGS_MANIFEST = {
|
|
4768
|
+
model: "Xenova/all-MiniLM-L6-v2",
|
|
4769
|
+
dims: 384,
|
|
4770
|
+
version: 1,
|
|
4771
|
+
generatedAt: "2026-03-30T01:13:41.843Z",
|
|
4772
|
+
sourceHash: "befa36303ffa6fdb",
|
|
4773
|
+
tools: [
|
|
4774
|
+
{ name: "absorb_as_alias", category: "corrections", tier: 2, descriptionHash: "1cf3a6fb02535ab9", embedding: [-0.052003, -5266e-6, 0.015785, 0.012071, 0.065711, -0.033174, 0.039866, -0.018765, 7708e-6, -7518e-6, -0.015263, -0.051593, 0.023647, -0.07585, 0.067438, 0.136097, 0.031861, 0.169203, -794e-5, -0.051027, 0.023203, 0.088539, -0.035755, 0.013831, 0.028572, -0.052699, -0.051792, -0.022423, 0.012381, -0.077592, 0.058298, 0.110584, -0.047673, 0.069714, 0.025819, 0.111075, 8874e-6, 0.030854, 0.055373, -0.030322, 0.056408, 5244e-6, -0.028818, -0.02714, -0.091616, -0.037993, -782e-5, -0.012823, -0.044686, 6259e-6, -0.031904, -0.123809, -0.080364, 0.069593, -0.015016, 0.054533, -0.06146, -822e-6, -0.058824, 0.014737, -0.035954, 3435e-6, 0.013426, -0.045064, 0.026858, -0.039063, 0.01948, 0.077233, 0.036488, -6082e-6, 0.010874, -1977e-6, -0.035582, -0.064537, 0.026507, 0.016662, -0.014294, 0.075153, -0.064723, -0.068685, -0.042998, -598e-5, 8076e-6, -0.039754, 0.034968, 0.066341, -2562e-6, -0.053119, 0.037051, 0.012351, -0.058347, -0.072573, 0.187189, -0.014275, 0.031176, 0.014275, 0.033324, -0.062146, 0.117937, 0.089174, -0.077521, 0.108749, -0.038804, 0.031262, -0.052347, -4253e-6, -4854e-6, 0.050949, -8053e-6, -0.043913, 0.026658, 0.020001, 0.028795, -0.079193, 0.05176, -0.023621, 0.02439, -0.057482, 0.056927, -0.066302, 0.053062, 2309e-6, -5698e-6, 0.037795, -0.027757, -0.018859, -0.047352, 0, 0.065434, 0.122301, -4099e-6, -0.049943, -0.052863, -3315e-6, 0.015868, -0.014651, -0.017437, 0.01303, -0.019346, 6457e-6, -1465e-6, 2865e-6, -0.053473, -0.072128, 0.01613, 0.152893, 0.021752, 0.02049, -0.013234, 0.081791, -0.136276, 0.04205, -0.039924, 0.010675, -0.063128, -0.040678, -5766e-6, 0.023655, -5775e-6, 0.021856, 0.040474, 0.078912, 3225e-6, 0.01925, -0.037369, -0.051271, -0.031031, -0.040666, 0.039412, 0.044453, 0.039253, -0.039227, -1722e-6, -0.082099, -0.058131, 4452e-6, 0.108857, -0.032716, 0.04195, -0.013222, 0.087428, -0.031788, -0.08708, -0.051303, -0.049501, 0.023698, 0.024863, 0.078468, -0.042775, 6907e-6, -0.074033, 0.053025, 0.017724, 0.05347, 7e-6, -0.034903, 0.068731, 0.017317, -0.069688, 0.081346, -0.062657, 0.030466, 1744e-6, -0.129866, -0.060037, 0.010091, 0.056638, 0.045355, -0.051088, 0.012099, -0.052326, -0.032346, 0.012374, -7848e-6, -0.033381, -0.149842, -0.062997, -0.057897, -0.032402, -0.032888, -0.016515, 9318e-6, 0.063252, -0, 0.109185, -2397e-6, 724e-5, 0.048108, -0.049369, -0.038884, 0.091551, 0.047899, -0.049658, 0.031966, -0.035775, -0.015619, 0.031125, -0.056572, 8928e-6, -0.038522, 0.055715, -0.081043, -0.076419, 0.07652, -9082e-6, -0.042464, 0.072525, 0.025604, 0.072334, 8484e-6, 0.036066, 1481e-6, 9096e-6, -0.037167, -0.01899, -0.014552, -0.062387, -0.060529, -0.021827, -0.045884, -0.041406, 0.01543, -0.063199, -0.076446, -2396e-6, 0.045681, -0.033975, 0.071435, 0.017329, 1682e-6, -0.024551, 0.073287, -5315e-6, -0.029011, 0.017681, -518e-5, -0.018796, -0.063141, 0.019052, -0.010242, 0.100137, 4488e-6, -0.021412, -0.037624, 0.033114, 0.080429, -908e-6, 0.021836, 0.048961, -0.055226, -0.075504, 0.022789, -0.043773, -0.063239, 0.058329, -0.029288, 0.032708, -7461e-6, 0.030675, -0.050241, 0.073778, -0.04182, -0.031365, 0.032356, -0.074869, -0.038284, 0.026049, 0.042738, 0.032678, -0.063813, -0.05884, 0.072175, -0.021864, 0.015986, -0.04609, -0.028441, 0.058146, 0.036331, -0.050776, -0, -0.057894, 0.045032, -0.029124, 0.044856, -0.051486, 2787e-6, -0.068457, -6466e-6, -4078e-6, -0.040156, 6223e-6, 0.033883, -0.031292, -0.035301, 436e-5, -0.048916, 0.010515, 0.033857, -0.071893, -0.020485, -0.123137, 0.022542, -0.018287, -0.048083, 0.093703, 0.010979, -6161e-6, 0.043639, 0.086569, -0.044477, 0.058204, 0.032775, -0.010295, 0.056031, 5479e-6, 0.044586, 0.05024, 1457e-6, -7894e-6, 0.10564, 0.051417, 0.027404, -0.03055, 0.042354, 5545e-6, -0.026245, -0.011035, -0.054607, 0.053298, -0.02141, 0.03945, -0.035982, -0.045052, 2036e-6, -0.021956, -0.026804, 0.046702, 0.021382, 714e-6, -9363e-6, 0.142317, -2952e-6, 0.077487, 0.044307] },
|
|
4775
|
+
{ name: "brief", category: "memory", tier: 1, descriptionHash: "b104829fe25a552f", embedding: [-0.015402, -853e-6, -0.081338, 0.018779, 1294e-6, 0.018613, 0.062764, 0.081356, -5032e-6, -0.022175, -0.023501, -0.016868, -0.021716, -0.01896, 0.050608, 0.034395, 0.077412, -0.028474, -2233e-6, -0.012094, -755e-5, -0.011305, 434e-5, 0.028371, 0.020347, -0.01156, -0.061177, 0.010864, 0.035033, -0.073133, 8533e-6, 0.085223, 0.020514, 0.052395, -7092e-6, 0.082412, 0.018532, -0.012274, -0.013546, -0.074478, -0.012333, -0.03086, -0.080347, 0.065841, 6036e-6, -0.019485, -0.036006, -0.02615, -0.055546, 5681e-6, -0.011517, -0.027468, -0.026468, 0.063229, -824e-6, 0.126552, 4173e-6, 0.023759, -0.02311, 0.016155, -0.058918, -0.08551, -0.054074, 0.059171, -0.016926, 0.045221, 0.042775, 0.025886, 0.067355, -0.119644, -0.02817, -0.030674, -0.048201, -633e-6, -0.052482, 0.033142, 0.015314, -0.049695, 0.02851, -0.126472, 7019e-6, 0.049494, -0.011103, 0.01563, -4873e-6, 8798e-6, 0.017692, -0.012822, -917e-5, 0.024313, 0.013206, -0.015223, 0.027476, 0.038283, 0.017381, 0.064417, -0.035337, -0.102895, -0.015745, 0.060353, 0.035025, 0.076649, 0.022051, 0.060742, -0.05028, -0.050914, -0.017693, 0.040287, -0.039312, 7644e-6, -0.020093, 0.040103, -0.012123, -0.023977, 0.078989, -0.058833, -0.058847, -0.011895, 0.034211, 0.097584, 0.096665, -0.02315, -3852e-6, -0.057236, -0.085488, -5294e-6, 8272e-6, 0, 0.10419, 0.010239, -0.028678, 0.146695, 0.016276, 0.020263, -0.010522, -0.026716, -0.040228, 0.011541, 0.021102, 0.1094, -0.037668, -9014e-6, 0.032576, -0.043491, -0.071761, 0.111476, 0.05856, -0.039269, -0.030991, 0.014106, -0.04624, -0.028789, 0.139139, -7753e-6, -8985e-6, -0.034733, -0.048608, 0.0511, 2664e-6, -0.03663, -0.090099, -8551e-6, 0.041555, 0.022313, 3586e-6, -0.058167, -376e-6, -0.138564, -0.041085, 0.021883, -0.011732, -0.072343, -0.062187, -0.101134, -0.014994, 5394e-6, 0.047968, 0.01883, -0.018483, -2578e-6, -0.023991, -5712e-6, -0.026378, -0.031884, -0.01511, -0.039514, 8882e-6, 0.094675, 0.055057, 0.022035, -0.080507, 0.01918, -4868e-6, 0.028556, -0.045422, -0.04176, 0.025404, -0.016817, -0.017342, -9522e-6, 0.053307, 0.047353, -0.030637, 0.027962, -115e-5, 0.028709, -0.110369, 0.04559, 0.03577, -0.029301, -0.052639, 0.070907, 5965e-6, 0.061356, 0.070821, -0.083871, -0.092265, 0.028779, -0.068174, -0.04757, 0.082451, 0.046546, -0.071791, -0, 0.053382, -0.027231, 209e-5, 0.020735, 0.048615, 1705e-6, 0.010396, 0.030359, -0.110238, 0.023263, -0.04675, 0.043651, 4276e-6, -0.011731, 0.011962, -0.020934, 0.017968, -0.082052, 8837e-6, 0.104544, 0.052862, -0.022874, -0.101554, 0.055038, -3836e-6, 0.026504, -0.027855, -353e-5, -0.027183, -0.044454, 0.023328, -0.026969, 4292e-6, 0.060255, -0.05239, -0.051532, 0.070432, -0.082728, -0.066381, -0.016418, 0.133759, -1237e-6, -0.092922, -0.017365, -0.029409, -0.01759, -8225e-6, 0.054736, -0.031457, -0.027385, -0.030817, 0.028333, 0.029737, 6795e-6, -0.042986, -0.015484, 0.010768, -0.01399, 4077e-6, -0.039866, 0.088641, 0.049589, -0.042465, -0.031938, 0.02317, -0.067931, 0.025145, 0.03591, -0.134721, -7217e-6, 0.042858, -0.024072, 0.021048, -0.079862, -8283e-6, -0.022743, -0.051191, -0.162104, -0.035928, 9922e-6, -0.045779, -0.014545, -0.048124, 0.036103, 0.045354, 0.01739, 0.021844, 0.041165, 0.036107, -0.058648, -0.091473, -0.076793, -0.058967, 0.056835, -0.032605, -0, -0.028755, -0.011067, 0.075506, 0.050977, 0.074139, -0.030425, -0.038698, 0.093033, 0.040169, 0.010714, 0.043282, -0.020448, -0.12086, -0.056044, 0.073623, 0.036145, -0.05477, 0.048569, -0.030567, -0.052864, 0.019, 0.024674, 0.038018, -0.045025, 0.033991, 7644e-6, 0.079667, 0.105632, 0.070949, 1913e-6, -1127e-6, 0.051641, 0.031789, -0.065943, -0.049179, 0.110738, 0.020221, 4716e-6, 0.055228, -8579e-6, 9192e-6, -0.064275, 0.057129, 0.099129, -0.032545, 0.081907, -0.08237, 0.01927, 1046e-6, -0.135619, -0.060235, 0.024138, 0.033775, 0.103242, -247e-5, 0.075936, 0.057058, -0.03861, 0.048856, 0.04338, 0.097034, 0.021528, -0.053694, -3884e-6] },
|
|
4776
|
+
{ name: "discover_cooccurrence_gaps", category: "wikilinks", tier: 2, descriptionHash: "376947e6c4f63b2b", embedding: [-0.064011, -0.017242, -0.048692, -0.031738, -0.021501, 0.027076, -0.061168, -0.03768, 0.06758, -0.067125, 0.057583, -0.046825, 7512e-6, -0.022578, 0.09175, 0.019893, -0.035256, 0.059556, -197e-6, -0.070928, -6347e-6, -0.021917, 3457e-6, 0.040987, 0.011768, -0.013948, -0.017696, -0.025707, 0.046323, 358e-5, -0.033675, 0.090483, -0.062276, 0.043932, 0.058768, 0.062377, 0.016774, 0.051104, 0.051068, -5933e-6, -0.041654, -0.028414, 0.042233, -1201e-6, -0.016043, 369e-5, -0.118238, 0.021575, -0.100264, 6258e-6, -0.029501, -0.027874, -0.079094, 0.118792, 0.033993, 0.100127, 4151e-6, 0.039198, -0.013736, 9683e-6, 0.108638, 0.017998, -0.030397, -0.02666, 5164e-6, 0.074446, 0.071833, 0.075904, 0.083513, 339e-6, 0.031216, 2196e-6, -0.090336, 0.052523, 0.028468, 0.075176, -0.028742, -0.039767, -0.042565, -0.138388, -0.08007, 0.08989, 0.028618, -0.011756, 0.019881, -0.066425, 487e-5, -0.062692, -0.06757, -9877e-6, 0.030805, -0.049936, 0.083242, -0.066131, 0.05596, 0.062792, 0.056279, -0.070078, 0.070195, -0.018606, -0.02132, 0.0977, -5617e-6, 0.074007, 0.020647, 0.029641, -0.035631, 0.031597, 0.074867, -0.011884, -0.016733, 0.033478, 6367e-6, -0.039617, 0.023918, -0.017445, 8478e-6, 0.025897, 0.076481, 0.036894, 0.074998, -3212e-6, -94e-5, -0.055846, -0.0359, -0.031422, -0.056523, 0, 0.094946, 0.050909, 0.021546, 0.031676, -0.070127, -4964e-6, -0.100607, 0.013785, -0.018907, 0.034581, -0.06313, 0.071458, -6912e-6, -0.022831, -8551e-6, -0.018736, 0.010356, 0.08716, 0.02647, 0.016164, 5081e-6, 0.026637, 0.021288, -2613e-6, 0.040485, -0.029758, 777e-5, -0.047732, -0.038704, 0.018733, 0.017187, 0.010026, 0.064877, -456e-6, 0.036208, 0.049834, 0.01782, -0.105982, -0.026763, -0.065649, -0.031918, -0.026001, -0.021098, -0.061546, 0.018998, -0.076301, 0.021247, -0.085759, -0.019005, 5415e-6, -0.036869, 0.058699, -0.083745, 0.019303, -0.037989, -0.037138, 0.02386, -0.068637, 0.023814, 0.049416, 0.067184, -5272e-6, -0.015566, 1585e-6, -0.038906, 0.01311, -0.105737, -0.065755, 0.012332, 0.059678, -8411e-6, 0.036303, -0.088056, 1547e-6, -0.026172, -0.073582, -0.028464, -0.017558, 0.023721, -0.030809, -0.045279, -0.095799, 0.042926, 0.017478, -0.078785, 0.020502, 627e-6, -0.101146, -0.046408, 0.017923, -0.032015, 0.044384, 0.025202, -0.027543, 0.079428, -0, 0.01551, -0.014797, 0.042448, -0.022488, 0.033912, 0.01269, 826e-6, -0.105292, -0.010306, 0.052059, -0.013579, -0.033819, -2811e-6, -0.041753, 2535e-6, -9019e-6, 0.019822, -0.029881, 0.075948, 0.143093, 0.074846, -0.130175, -0.031857, 0.027232, 0.076341, 0.034774, -0.019785, -0.101667, -5576e-6, -0.031159, -0.041515, -0.016295, 371e-5, -0.060246, -0.039295, -0.042506, -0.034924, -0.060124, -0.110795, -0.071718, 0.037018, 0.04159, -0.052686, -0.046256, -0.016624, -0.023364, -0.016447, 0.092002, 7253e-6, 1804e-6, 0.013208, 0.0136, -0.076113, -0.045435, -0.010025, 0.090154, 1502e-6, 0.058013, -0.035124, 0.025356, 0.028054, 0.069826, -0.036027, 0.072301, 0.100846, -0.054697, 0.028745, 0.019313, -0.079345, 0.016241, 0.026607, 0.019369, 0.025663, -0.109542, 5003e-6, -0.065129, -0.091133, -0.115343, -0.013731, -8486e-6, -0.031542, 0.018915, 0.082571, 0.076962, -0.03723, 0.029337, 9552e-6, 0.052192, -0.021194, -0.015566, -0.062874, -0.018741, -0.050046, -0.012563, 0.034236, -0, -0.048271, 0.016835, 9792e-6, -0.038495, 0.065587, -0.037853, 0.015294, 0.050954, -7687e-6, 0.039098, -0.019821, -0.035123, -0.045415, -0.020103, 0.015826, -0.022654, -0.016353, -0.04815, -0.062895, -0.035093, -0.064434, 0.020919, 0.028369, 0.010723, -0.054968, 0.060229, 0.064984, 0.153719, 0.095948, -0.047415, -0.014346, -0.039115, 0.055726, -0.097782, 0.059995, 0.107137, 0.07497, 0.025418, -0.031818, 2951e-6, 0.010591, -0.01121, -0.024566, 0.121794, 0.121886, 0.022266, 0.05232, 0.010477, -0.037363, -0.067195, -0.024294, -0.066361, 2045e-6, 0.017719, -4666e-6, 0.034011, 0.046722, 284e-5, 0.090587, -0.021547, 0.091161, -0.044344, 0.047977, -6664e-6] },
|
|
4777
|
+
{ name: "discover_stub_candidates", category: "wikilinks", tier: 2, descriptionHash: "a83d1fce59ab1f8a", embedding: [-0.074628, -0.058768, -0.070389, 0.035103, 0.066823, -0.030212, -0.019542, -4072e-6, -0.03298, -0.044852, 0.04446, -2314e-6, 0.031025, -0.019897, -3551e-6, 0.019969, -0.010436, 0.044604, 0.028472, -0.017098, 0.04016, 0.03923, 0.012642, 0.039873, 0.045809, -0.066701, -0.063497, -0.01241, 0.029137, -0.060668, -0.055043, 0.125813, -0.052952, -0.031142, 0.050459, 0.046156, -8226e-6, 0.066506, 0.05336, -0.052626, -7308e-6, -0.014027, -0.07102, 0.040759, 0.012091, -0.036888, 223e-5, -0.037828, -0.098171, 738e-6, -0.067009, -0.103179, -0.053515, 0.125308, -0.010334, 8986e-6, -0.031182, 0.012248, -0.061822, -0.023825, 0.052455, 8484e-6, -0.021781, -0.012927, -0.025069, 0.074503, 0.06301, 0.064025, 0.073089, -0.060674, -7967e-6, 4172e-6, 5899e-6, 0.088846, 0.047936, 0.019958, -2573e-6, 0.026999, -0.057437, -0.039753, -0.031895, -0.033189, -0.022645, -7092e-6, -3185e-6, 0.040783, -0.023043, -0.040531, 0.010554, -8841e-6, 0.061998, -0.091452, 0.119557, -0.056275, 0.035603, -0.022271, 0.051389, -0.087235, 0.021182, 0.030058, -0.046076, 0.056821, 0.049054, -321e-5, -685e-5, 0.06642, -0.022313, 3425e-6, 0.075841, -0.025422, -0.01768, -0.026928, -0.015485, -0.041596, 0.010566, -0.047983, -0.012414, -0.0143, 0.031602, 2421e-6, 0.036548, 0.083066, 0.081272, -0.042952, -0.063754, -0.018383, -0.112291, 0, 0.079547, 0.055187, -0.044244, 0.049214, 5255e-6, -714e-5, 0.044263, -7382e-6, -0.035293, 3583e-6, 0.018884, 0.074986, -0.013793, -8807e-6, 0.011307, -9138e-6, -4252e-6, 0.102638, 0.016935, -0.050777, 0.055016, 0.080733, 845e-6, -0.051233, 0.078544, 9051e-6, 5898e-6, -0.045781, -0.056237, 0.037045, -7218e-6, 0.03338, 0.051199, -0.02516, 0.084692, 0.042387, -0.021984, -0.077525, 6667e-6, -0.036572, -0.038974, -0.0304, -0.02446, -0.059973, 0.058911, -0.072884, 0.063289, -0.02798, 0.027949, 0.016785, -0.060524, 0.028046, -0.072194, -0.043943, -0.021841, -0.032601, -0.053303, -1571e-6, -0.029627, 151e-5, 0.035493, -0.039585, -0.095005, -0.039535, -0.085766, 0.031329, -0.114785, -0.06974, 0.033347, 0.047178, 5384e-6, 0.031391, -0.038104, 8662e-6, -0.027613, -0.036865, -0.083438, -66e-6, -0.040523, -0.046469, -0.017869, -0.0923, -0.053834, 0.068417, -4927e-6, 0.036331, 0.088202, -0.095641, -0.052504, -0.074257, -0.074282, 0.036657, -0.025843, -0.020519, -434e-5, -0, 0.057224, -0.026383, 0.013369, 0.059883, 0.028412, 0.032236, -0.046526, -9644e-6, -0.046443, 0.018681, -0.020481, 0.039704, -0.052617, -0.025658, 0.051302, 0.010913, -0.027886, -0.05359, -0.013586, 0.120155, 0.035123, -0.014975, -0.089199, 0.071436, 0.033426, -0.010781, 0.038876, -0.039084, 0.028831, -9563e-6, -0.022384, 0.020843, -0.030781, -0.078492, -0.03822, 536e-6, 0.043207, -0.039018, -0.079436, 13e-4, 0.083452, 0.018965, -0.06442, -0.076553, -0.078105, -0.037774, -0.041793, 0.075203, 0.013537, -0.047171, 0.095399, -0.045464, 0.017616, -0.031049, 6789e-6, 0.116928, -775e-5, 0.086514, 0.033331, 0.020143, 0.069938, 0.079697, -0.06181, 0.042785, 0.035718, -0.087052, -0.046735, 0.082057, -0.130566, -0.013855, 9032e-6, 0.01473, 435e-6, -0.107794, -246e-5, -0.02154, -0.035948, -0.076983, -0.02847, -0.054556, 0.03202, 0.014273, 0.015389, 0.026155, 0.074908, -2041e-6, 2679e-6, 0.065778, -0.02466, -0.053762, -0.034864, -0.072434, -0.045942, 0.09846, -2455e-6, -0, 0.020762, 0.090361, -0.023137, 0.013393, 0.046062, -0.015501, -0.01396, 0.081257, -0.051247, 0.032912, 0.018727, -0.069731, -0.07025, 0.05594, 0.071193, 0.015772, -0.065554, -0.015808, -0.049505, -0.053114, -0.042777, 0.023971, 0.029006, 5997e-6, -6106e-6, 0.079982, 0.058779, 0.136965, 0.083703, 0.012076, -4237e-6, 0.023122, 0.019398, -0.075338, 0.037963, 0.142463, -0.014776, -0.019392, -0.030919, 0.068478, -0.025771, -0.042758, 0.0479, 0.091165, 0.051627, -0.013847, -7569e-6, -3026e-6, -7516e-6, -0.053204, -0.034257, -0.018798, 0.011804, 0.039131, 2135e-6, 0.07685, 0.060999, 0.025821, -0.029467, -8738e-6, 0.210452, -0.055032, 0.039148, 0.061965] },
|
|
4778
|
+
{ name: "dismiss_merge_suggestion", category: "diagnostics", tier: 3, descriptionHash: "4ff75acfb36b6dfd", embedding: [5553e-6, -0.019216, 0.055372, 0.051723, 0.032853, -0.024201, 0.025447, 0.029692, -0.022417, -0.060248, 0.034878, -0.047489, 7774e-6, -0.013942, -0.041602, 0.059489, -0.046738, 0.01171, 0.016923, 1967e-6, -0.055545, 0.062468, -0.025809, 0.06498, 0.030501, -0.032602, -0.044382, 1929e-6, -0.048111, -0.046611, -2406e-6, 0.155707, -0.079122, 0.056709, 0.01263, -0.010258, 5645e-6, 0.044131, 0.049315, -0.05319, -0.035147, 0.016366, -0.061711, -0.034576, -0.056675, -5057e-6, -0.016135, -0.037785, -0.064852, 0.027641, -0.052673, -0.053256, 0.032419, 877e-5, 2234e-6, 0.016747, -0.012086, 0.011536, -0.04272, 0.041298, -0.053134, 1692e-6, -0.077809, -0.018331, 0.028275, 0.081447, 0.079415, 0.011147, 0.020916, 0.055709, 0.030337, 0.029992, -0.09279, -0.031104, 0.050437, 0.065642, -0.024728, -0.028878, -0.052952, 0.023041, -0.107196, 0.06416, -0.028911, -0.045006, -0.013301, 0.019307, -0.041794, -0.041122, 8786e-6, -0.041301, -0.011039, -0.045197, 3077e-6, 0.04643, 8447e-6, 0.013566, -0.048058, -0.08654, 0.043324, 0.053593, -0.047506, -0.045597, -5485e-6, -0.030151, -0.051442, -0.04497, -0.014613, 0.039951, 9484e-6, -0.014992, -0.045918, -0.050903, 0.039538, -0.031446, -0.052874, 0.108105, 0.056167, -0.014485, -7381e-6, -0.024843, 0.088433, 0.048436, -0.015419, -0.022727, 3589e-6, 0.040212, -0.05018, -0, -0.043269, -445e-6, -0.042829, 0.081169, 0.035209, -0.018289, -0.033669, -0.019931, 7461e-6, -0.068333, 0.023145, 0.083494, -0.011446, -0.091729, -0.022766, -0.07268, 0.110441, 0.135694, -0.054121, -0.017476, 0.074522, 0.134715, -0.012627, 0.035827, 7912e-6, 0.015996, -0.027512, 0.027178, 0.048371, 0.0246, -0.069074, 0.046201, -0.031012, 0.017352, -0.052052, 0.022016, -0.069158, -0.034086, 7413e-6, -0.012053, -0.016985, 0.024327, -0.08481, -0.06836, 0.10767, -0.10585, 6156e-6, 0.056076, 6833e-6, -0.03557, 0.080861, 0.025875, 0.012785, 0.084888, -0.043517, 58e-5, -0.093067, -0.031842, -0.031094, 0.011054, 0.03028, -0.027514, -0.087396, -0.030294, 0.051125, 6681e-6, 0.030405, 0.014405, -2327e-6, -0.115354, -0.015394, 0.025293, -0.010175, 0.011755, -7528e-6, -0.106993, -3351e-6, -2076e-6, 0.113325, -0.028815, 0.033965, 9462e-6, -0.034585, -0.045113, 0.111642, -0.04952, 0.033382, -0.016806, -0.146468, 0.052032, -0.076543, 0.015858, 0.063235, 0.044623, 0.088034, -0, 0.0465, -0.017231, -0.022506, 0.059064, -0.076818, 0.017838, 0.046083, 0.094309, -0.087914, -0.085069, 0.02667, -0.031135, 0.032283, 0.040829, -0.088687, 0.05961, 0.02204, -0.031919, 2646e-6, 0.058465, 0.022777, 0.011678, 3313e-6, 0.026569, -0.020944, -0.033387, -0.02095, 0.04243, 0.106236, -0.057372, 0.012573, 0.015813, -0.039867, -0.094334, 0.085509, -0.023589, 6309e-6, -0.042672, -0.028348, 0.04136, 0.048594, 0.0288, -0.027381, -0.045071, 834e-5, 0.022651, 0.038908, -0.035527, -0.014828, -0.072722, -0.026063, -0.01994, 4137e-6, -0.055196, -0.037344, 0.047538, 0.096744, 0.038536, -0.075795, -0.018648, 0.110367, 0.02073, -0.012078, 3398e-6, 0.064488, -0.066421, 0.043332, 0.046965, 0.028898, 4827e-6, -0.03755, 0.061598, -0.031635, -0.104368, 0.063644, 956e-6, 8486e-6, -0.111757, 0.010201, -0.071598, -0.035035, -0.032876, -226e-6, -0.029904, -0.031159, -0.112621, -0.05835, 0.12272, 0.044752, 0.067245, -545e-5, -0.116801, 0.077501, -0.015025, -0.160878, -0, 0.057716, 0.045843, 0.021425, 0.021276, 0.09961, 9037e-6, 2171e-6, 0.075282, -2829e-6, -0.053743, -9512e-6, -0.019992, -0.071561, -0.030965, 0.047984, -0.079132, -0.051677, 0.0172, -0.049222, -0.08132, -0.085187, -3425e-6, -0.038975, 0.029328, -0.021443, 0.030278, 0.04456, 0.064138, 0.027618, -0.011791, 8596e-6, 0.02364, 0.024065, -9766e-6, -0.064033, 0.026403, 0.080867, 0.06645, 0.04769, 0.031151, 0.052153, 0.035324, -0.051086, 0.034346, 0.033428, -0.010393, 0.030389, -0.044484, 0.041686, -5552e-6, -0.038494, 0.068122, -0.011533, 0.063109, 6364e-6, 0.08532, 0.049159, 0.040562, -0.038301, -0.025062, 0.075085, -0.064559, -7801e-6, 0.030471] },
|
|
4779
|
+
{ name: "export_graph", category: "graph", tier: 2, descriptionHash: "690cc81cb366112f", embedding: [-913e-6, -1502e-6, -0.065466, -0.010171, 0.047459, -0.051006, -0.058132, 0.052461, -0.025938, 0.047742, 0.058407, -0.010876, 0.054305, 0.030516, 0.083856, 0.086909, -0.069572, 0.04083, -4201e-6, -0.129606, 0.048817, -0.014322, 0.016147, -0.027579, 0.030517, -0.052204, -0.051494, 6114e-6, 0.040413, -0.047963, -0.022294, 0.038004, 0.03263, 0.104992, 0.02833, 0.102679, 0.038307, 0.035525, 0.03373, -859e-6, 0.020249, 0.0247, -0.04269, 7255e-6, -0.012325, 0.05185, -0.12124, -6277e-6, -7332e-6, 0.071418, -0.044494, -0.047367, -0.069372, 0.019656, 0.046298, 0.13252, -0.100203, -0.123651, -0.036786, 4601e-6, 0.056255, -0.027781, -0.051292, 3428e-6, -5106e-6, 0.063407, 1354e-6, 0.128885, 0.021581, -0.070781, 0.021252, -0.055405, -0.108304, -0.028174, 0.043752, 0.065613, -3854e-6, 0.012981, -0.09975, -0.112934, 0.0152, 0.107184, -0.01691, 0.057146, -0.033489, 0.029663, 0.011863, 8651e-6, 1183e-6, 0.039247, -0.058951, -0.068235, 0.03897, 269e-6, -0.012183, 0.082229, 0.091551, -0.079449, -0.03163, 0.036386, -0.010236, 0.021277, 0.064112, -0.103782, -0.012952, 0.026345, -0.014984, 0.01185, 0.04483, 0.022949, -0.051396, 0.120016, -0.031091, -0.075675, 0.033175, 1483e-6, -0.063076, 198e-5, 1577e-6, 0.010795, 0.053011, 0.023755, 0.097014, 8227e-6, -0.046602, -0.060653, -0.075614, 0, 0.010537, 0.037859, 1075e-6, 4266e-6, 0.022107, 0.048927, 2449e-6, -0.066776, -0.046506, -8662e-6, -0.080394, 0.075942, -0.056129, 0.038274, -0.010132, 0.01651, 0.015195, 0.028044, 0.086521, -0.055045, 0.017202, 0.019733, -0.031848, 0.049363, 0.101135, 0.018902, -0.016884, -7868e-6, -0.022017, 6499e-6, -0.018047, 0.02261, 0.076802, 0.013416, 0.031706, 0.034865, -0.021348, -0.045329, -0.019696, -0.058877, -0.018575, 0.019804, 0.026627, -0.023674, -0.038626, 6355e-6, 4444e-6, -0.066996, 0.046598, -3839e-6, -0.05689, 0.015788, -0.013897, -0.021544, 0.021752, -0.083683, 0.057192, -2328e-6, 0.059062, 76e-4, -0.022287, 0.017713, -0.016739, 0.029339, 1334e-6, 0.026204, -0.172128, -0.054967, 0.043588, 0.073946, -0.036672, 0.08588, -0.024722, -0.019121, -0.044424, -0.059669, -0.08043, -0.052026, -0.02081, 0.017563, -0.095684, -0.094714, -0.113329, 9234e-6, 0.047522, 47e-6, 0.073432, -0.034217, 0.01196, -0.013925, -0.024191, -0.015655, 0.010189, -8342e-6, -3316e-6, -0, 8573e-6, 0.013943, 0.031656, 0.05187, 0.062892, -0.045275, 0.017463, 0.037513, -0.088156, 0.081543, -0.050391, -0.019878, 0.019083, -0.055219, 0.054585, -0.020959, 0.021315, -0.024779, 2224e-6, 0.073158, -0.041796, 0.013811, -0.075687, 0.093851, 0.129061, 0.060523, -0.038575, 3408e-6, -0.0235, -0.013893, -0.040637, -0.031486, -3246e-6, -0.065268, -0.03486, -0.037425, 0.056377, -0.044885, -0.038246, -0.052645, 1956e-6, -6562e-6, -0.119472, -0.048549, -6078e-6, 0.075786, -4645e-6, 0.046151, -0.016853, -0.036568, 0.051081, -786e-6, 0.035396, -0.095119, 0.051561, 0.016173, 0.025675, 0.062336, -0.024925, -0.065106, 0.018923, -0.064799, 8084e-6, 0.025646, -0.032219, -0.033843, -8132e-6, 0.063014, -0.167985, 0.05171, -0.036947, 0.040658, -6045e-6, -0.062016, 0.077321, -0.04567, -0.058007, -2159e-6, 0.013953, -0.028212, -0.04132, 9043e-6, 0.046045, 0.090985, 0.089328, -0.016232, 0.047882, 0.081623, 0.039252, 0.026346, -0.066242, 8088e-6, -0.114858, 0.071154, 0.047454, -0, -0.164738, 0.015442, 0.024935, -0.030303, 2094e-6, 0.031273, 0.085023, 0.053776, 5867e-6, 0.075477, 0.028414, 0.071955, -0.097354, 411e-5, -6436e-6, 4621e-6, 2192e-6, 0.045196, 8778e-6, -0.045284, -2193e-6, 3398e-6, 0.026278, 0.052031, 0.027199, -0.06056, -6923e-6, 0.064578, 0.056473, -0.053973, -0.019165, -0.065117, 0.061206, 9145e-6, -0.011193, 0.057228, 0.046724, 7606e-6, -3538e-6, 0.042995, -3571e-6, 4652e-6, -0.046854, 0.048385, 1189e-6, -0.011361, -9351e-6, 0.02305, 0.013677, -0.033485, -5032e-6, -0.088397, 369e-5, -0.02674, 0.018344, 363e-6, -0.0237, -0.033702, 0.073127, -0.039464, 0.040747, -0.056612, 0.037428, 2915e-6] },
|
|
4780
|
+
{ name: "find_sections", category: "read", tier: 1, descriptionHash: "40d8eb7beb52e650", embedding: [5267e-6, 0.103942, 3207e-6, 7472e-6, 0.022505, -0.034969, -0.057255, -0.028972, -0.017864, -0.044588, 2899e-6, -0.018407, 0.084637, -0.030283, 0.046238, -0.039227, -0.104507, 0.125052, 0.040053, -0.051901, 0.014726, 0.086801, -43e-6, 0.010596, -0.094506, 0.048382, -0.141916, 6484e-6, -0.011549, -0.077177, 0.039619, 0.043332, 6483e-6, 0.069399, 0.071406, 0.01715, -5668e-6, -0.016966, 0.026506, -4625e-6, -0.029254, 0.020895, -0.057433, 0.039035, 0.055085, -7036e-6, -0.052539, -0.019889, -3057e-6, -6441e-6, -0.028707, -0.110649, 2762e-6, 0.146076, -0.01142, 0.119225, 0.020135, -3442e-6, -0.01169, -0.018182, 0.010724, -0.014815, -0.015981, -0.059103, -0.061698, 0.080281, 0.054299, 0.044528, 0.047255, -0.039392, 0.023324, 369e-6, -6143e-6, 0.013688, 0.014796, 0.023157, -0.04573, -0.043516, -0.042298, -0.093338, -0.079334, 0.042596, -0.013975, -0.017813, -9852e-6, 0.024584, -0.061934, -0.037152, -0.034516, 112e-6, 0.010999, -0.122131, 0.016554, -0.043277, -0.023111, 0.059879, -0.016061, -0.098589, 0.070409, -7044e-6, -0.053251, -0.017929, 0.066308, 5023e-6, -0.018235, 0.05011, -0.01113, 0.05852, -0.038871, -0.034046, -7686e-6, 0.036182, 0.01304, -0.021939, 0.04155, -5626e-6, 0.010822, -4344e-6, -0.046908, 0.087658, 0.121662, 9679e-6, 0.069695, 0.038994, -0.064035, -0.06854, -0.061768, -0, 0.04927, 0.022924, -903e-5, 0.036543, -0.057295, -2529e-6, 0.065746, 0.026781, -4996e-6, 0.055566, -0.031599, -2987e-6, -0.082744, -0.015681, -4205e-6, -0.0269, 0.019713, 0.079002, -0.084068, -0.030645, -0.013257, 0.034495, 9013e-6, -0.092548, 0.063575, -6813e-6, -0.024947, -0.04541, -0.048375, 0.022178, 0.051194, -4466e-6, -4679e-6, -0.045363, 0.029449, 0.014839, 0.065244, 8019e-6, -0.021529, -3091e-6, -0.02875, -0.011798, 0.078033, -0.04341, -0.045224, 0.037939, -0.041831, 0.013, 0.016572, -0.017127, 0.032579, 0.061085, -0.059755, -0.081906, 0.027082, -0.059745, -0.039607, 0.066319, 0.014024, 0.060663, 0.126205, -0.024401, -0.054648, 0.050129, -0.079199, -0.038319, -0.052883, -0.03635, -0.011486, 0.052393, -0.034788, 0.057185, 0.015932, 0.012587, 2103e-6, -0.059661, -0.072202, 0.04932, 0.01598, -0.047202, -5241e-6, 0.036781, 963e-5, 0.073744, 0.010267, 0.03886, 0.088554, -0.024742, -0.050174, -0.122707, -0.056622, -0.033244, 0.044844, -0.103667, 0.061606, -0, 0.103413, -0.039664, 0.02026, -0.074216, -0.023257, -0.033862, -0.031728, -0.018779, -0.020875, 0.084586, -0.048017, 0.064407, -0.012577, -0.014216, 0.02882, 0.012529, -0.055345, -0.072942, 0.048275, 0.095355, -0.036791, -0.043836, -0.077351, 0.028375, 0.01504, 5828e-6, -0.015133, -145e-5, 0.077087, -1148e-6, -0.057561, -4342e-6, 5675e-6, 5942e-6, -0.092377, -0.052428, -0.065126, -0.03422, -0.023961, 232e-6, 0.032355, 0.030702, -0.02089, -0.091122, -0.049798, -0.015814, 0.085923, 0.116421, -0.031453, -3549e-6, -2404e-6, 0.01096, -0.025921, -0.03703, 0.089478, 0.128495, -0.020777, 0.040729, -0.05246, -0.063012, 0.049237, 0.132065, -0.041541, 0.021705, 0.058178, -0.042453, -0.012528, -0.090779, -0.0972, -0.021734, -9027e-6, -0.062379, 0.034161, -0.066503, 0.048977, 0.020761, -0.062699, -0.015094, -0.017351, 0.066801, -0.072486, -0.048363, -0.025166, 0.07191, 0.064776, 0.014325, -6642e-6, 0.025646, 0.014502, -0.051386, -0.045434, -0.043158, 0.049024, 0.010454, 0.036736, -0, 3786e-6, -0.030181, -0.041173, -0.013864, 0.016657, 7156e-6, -0.047303, 0.081358, -0.059201, -5737e-6, 0.017, 9654e-6, -0.056683, -0.048002, -0.035903, 0.048088, -0.033514, 0.027919, -0.065556, 0.010566, -0.017363, 0.089551, 0.027571, -0.036767, 4033e-6, 0.060995, -0.019767, 0.021015, 0.135149, -0.024533, 0.088412, -0.045074, -1565e-6, -0.025993, 0.040716, 0.076684, 0.045219, 0.045399, 0.040393, 0.081846, 0.070432, -0.103048, 0.087349, 0.089016, 0.03862, 0.032929, 725e-6, 0.044526, 0.057711, -0.028217, -0.05514, -4387e-6, -0.033524, 0.045471, -0.067637, 0.050758, 0.110424, -0.04813, 0.033078, -0.025495, 0.087977, -0.026932, 0.029804, 0.030302] },
|
|
4781
|
+
{ name: "find_similar", category: "search", tier: 1, descriptionHash: "1aedc145f5e12b82", embedding: [-0.118371, -0.062946, -0.045131, -299e-5, 0.037549, 0.042511, -0.021959, 753e-5, -0.011897, -0.030238, 0.038398, 0.038108, 0.082645, 0.052063, -0.018241, 0.060907, 0.058627, 0.035981, -0.018098, -0.065204, -0.028623, -187e-6, 0.046198, 8159e-6, 0.053167, 0.01854, -0.043182, 0.047068, -8939e-6, -0.031721, 0.019672, 0.104161, -0.033204, 0.019106, -0.047617, 0.052343, -0.049922, -2412e-6, 0.020151, -0.036456, -0.07157, -1174e-6, -0.028336, 0.03607, -682e-6, -4849e-6, -0.145328, 0.013288, 1465e-6, 0.03918, -0.129454, -7552e-6, -0.096626, 0.038994, 0.047825, -8258e-6, 0.013481, -0.019404, -0.042001, -0.099862, 0.033435, -0.067253, 0.014174, -0.030949, -0.021797, 0.026056, 0.027433, 2832e-6, 0.015811, -0.039513, 0.035384, 0.02714, 5645e-6, 0.067172, -0.019836, 0.017644, 2877e-6, -0.014277, -0.092065, -0.094185, -0.09178, -371e-6, 0.042049, 0.011277, 0.043171, -0.042879, 0.048468, -0.061076, -0.041072, 2633e-6, 0.031432, -0.050101, -8662e-6, -0.060751, 0.029514, -2784e-6, -5841e-6, -0.016066, 0.068606, 0.020665, 208e-6, 0.099945, 0.015041, -519e-6, 0.013953, 0.050011, 5439e-6, 0.011619, 0.071723, -0.177998, -0.017049, -323e-5, 0.012158, 265e-6, 0.015114, -0.082054, 0.097912, -0.030722, 0.077574, 0.069989, 0.03052, 0.037299, -0.04102, -9768e-6, -0.101474, 0.034639, -0.051494, 0, 0.076594, 0.038743, 6239e-6, -0.031483, 0.015995, -0.011681, -0.037818, 0.096539, -0.135481, -0.053198, -0.065597, 0.051202, 7718e-6, 0.048529, -0.03929, -0.059223, -0.055774, 0.027967, -0.013984, -0.060364, 0.025466, 0.017971, 0.027352, -0.032337, 0.017249, -3749e-6, 4417e-6, -0.12312, 0.036673, -0.01494, -0.038182, -0.04249, 0.015797, -0.02099, 0.018877, 0.018467, -0.01756, -0.011469, -0.028125, -0.106699, 6963e-6, 513e-5, -0.034254, -0.085262, -0.016398, 0.052532, -0.061008, 0.011803, 0.090486, -0.068864, 0.08359, 0.037946, -0.037089, 0.027157, 0.043996, -0.027803, 0.028029, 0.044252, 0.023649, 0.01953, 0.069969, -0.015525, -0.014974, 0.014479, -0.010543, 0.018357, 0.017393, -0.026421, 0.08846, 0.074114, 0.021083, 0.052856, 956e-5, 32e-6, -0.026, -0.041137, -0.048753, -0.085768, 0.049453, -0.025602, -0.124381, -0.050508, 0.017264, -0.053885, -0.062886, -3418e-6, 0.044784, -0.156003, 0.018666, -0.034083, 2354e-6, 0.010767, -0.051138, -0.026774, 0.03019, -0, -0.028426, -0.050163, 0.059483, 0.016836, -0.048462, 0.043456, -0.029844, -0.037179, -0.022921, 0.056104, 0.03224, -8298e-6, -0.017393, -0.095985, -1403e-6, 0.01391, -0.025089, 0.054692, -0.017441, 0.085906, 6919e-6, 0.012936, -0.039236, 0.130202, 0.064179, 0.064262, 0.031946, -0.052094, -2392e-6, -0.115612, 0.011174, -0.019727, -0.088519, -0.103601, -0.064829, 6997e-6, -2175e-6, 0.012698, -0.079449, 0.085314, 3454e-6, 0.109703, -0.054834, -0.024228, -0.022683, -5713e-6, -0.128881, 0.029946, 0.03279, -0.056375, 0.078556, -0.029337, -0.044768, -0.038205, 4712e-6, -0.034064, 4802e-6, 0.059477, -0.082337, 0.038227, 0.067592, -0.013011, 0.03875, 0.069883, 0.035898, -0.044418, -0.040537, 0.048026, -0.075668, 0.074854, -9051e-6, 0.028824, 0.047412, -0.025574, 0.050627, 9184e-6, 0.035747, 0.012125, -0.024172, -0.070375, 0.029281, 4031e-6, 0.053058, 0.060576, -0.074677, 0.045753, 0.032752, 0.040169, 0.042569, 6708e-6, -0.020536, -0.053316, 8881e-6, -677e-6, 0.018346, -0, -0.076435, -0.035937, -0.068322, 0.03174, -0.053399, 3375e-6, -7257e-6, 0.042222, -0.057284, 0.022531, 0.056748, -0.075792, -0.029262, 0.021914, -0.031317, 0.024171, 0.045915, 6817e-6, 0.024569, -1948e-6, -0.018717, 0.116464, 0.023538, 0.033081, 0.015563, 0.01272, -0.017971, 0.090263, 0.108689, 0.016872, -483e-6, 0.010639, -44e-4, -0.099845, 0.076505, 0.070395, 0.024366, 8447e-6, -0.106689, 0.07395, 0.07058, -819e-5, -0.062296, 0.018405, 0.119548, -8393e-6, 0.049712, -0.042727, 546e-5, -0.029921, 1966e-6, -0.051671, -9216e-6, 0.012377, -0.011349, 0.042813, 0.015833, 0.073609, 0.081333, -0.070604, 0.061478, -0.022672, 0.111402, 0.086614] },
|
|
4782
|
+
{ name: "flywheel_benchmark", category: "diagnostics", tier: 3, descriptionHash: "197294e2f234079f", embedding: [-0.032092, -4343e-6, -0.045143, 0.031632, -3172e-6, -0.082584, -0.055477, -1453e-6, -0.041887, -0.019966, 0.014172, 0.049759, -0.030144, -0.061149, 0.032504, 0.013122, 0.045117, -0.029991, -0.017399, -0.049175, -0.015221, -0.067391, -0.012168, 0.049042, 0.012297, 599e-5, -0.121529, 0.06885, -0.013529, -0.065981, -0.052037, 0.08534, -0.08673, 0.056384, -0.042099, -2867e-6, 0.043599, -0.047183, -4809e-6, -0.047756, 0.059618, -0.034769, 0.043291, 0.043335, -0.027153, 0.028125, -8016e-6, -0.060145, -0.067517, 0.012621, -0.113365, -0.062933, 0.11623, 5605e-6, 0.025289, 0.086219, 0.012825, 0.051755, -0.021021, -0.033201, -0.025233, 8945e-6, -0.04325, 0.034447, 0.06245, -0.02532, 0.051399, -0.082936, 0.070999, -0.03675, 9575e-6, 0.018365, -0.014758, -9448e-6, -6397e-6, -0.047607, 1703e-6, -0.064619, 6354e-6, -0.137301, -0.033875, -0.031511, -0.076306, 0.039063, 0.049261, -0.040013, 0.043546, -0.030276, -0.038704, 0.017647, 0.047761, 0.069601, -0.011627, -0.034284, -6792e-6, 0.068165, 0.031773, -0.068139, 0.028964, 0.031856, -0.012031, 0.044472, 0.06491, 0.079721, -0.024423, 0.038798, 0.077692, 0.078801, -4523e-6, 0.021183, 0.013956, 0.064831, 0.02294, -0.049011, -0.052004, -0.031388, -0.115378, -8661e-6, -6306e-6, 0.10998, 0.069208, -6068e-6, 712e-5, -0.025186, 0.05366, 0.036138, -0.076219, 0, 0.015729, -0.069517, -24e-6, -0.033955, -0.035174, -3815e-6, -0.027072, -232e-5, -0.056832, 0.036728, -0.016149, 0.02264, -0.032975, 3359e-6, 0.124638, -0.076362, 0.022435, 0.015446, 0.045565, -0.056148, 0.061994, -0.100892, -0.087954, -0.027158, 0.062354, 0.0507, 7174e-6, 0.013169, -0.036082, 0.051179, 0.087757, -0.046522, -0.128189, -0.021658, 0.059887, 0.032925, 0.013225, -0.040125, -2878e-6, -0.027858, -0.084625, -0.041141, -0.087451, -0.081621, -0.096729, -0.010888, -0.036329, 8262e-6, 0.016529, 0.079804, 3576e-6, 0.017545, 0.045492, 7583e-6, 0.086541, 0.04147, 0.065791, -0.019726, 214e-6, 0.160767, 0.027171, -0.049722, -0.097731, -0.059718, 0.011049, -0.011162, -6463e-6, -897e-6, 9341e-6, 0.063881, 0.025186, -0.031497, 0.036283, 0.064192, 0.089781, -0.017826, -0.035584, -0.024918, -0.049279, -0.051309, -9054e-6, 0.027912, -0.061485, -0.030055, 0.014553, -0.017383, -0.016417, -5247e-6, -0.015207, 7512e-6, -0.067698, -0.026053, 0.02826, 0.045738, -0.068292, -0, -0.06236, -0.019938, 1112e-6, 0.105252, 0.063102, -3174e-6, 0.035909, -0.019101, -0.058953, 0.028774, 0.016213, -2709e-6, -0.101423, -0.012496, 0.085071, 9957e-6, -0.061715, -0.104185, 0.084621, 0.038476, 0.03087, 0.076703, -0.058723, 0.064479, -0.037872, -0.017343, -0.050408, 0.070021, -0.032814, -0.066631, 0.053467, 9e-3, 0.024125, 0.028049, -385e-5, 0.01478, 0.018858, -0.074685, -0.011638, 0.011088, 0.061231, -0.01593, 0.019898, -0.042798, 0.020831, 0.039556, -0.073926, -1001e-6, 0.029708, 0.033422, 0.014075, -0.012786, 0.026071, 2522e-6, 0.048922, 4985e-6, -0.044093, -0.032598, 0.011052, -0.03493, 0.07899, 0.013469, -0.038668, 0.016701, 0.034914, -0.033309, 0.074161, -0.043921, 8064e-6, 0.059051, -0.076423, -0.012823, 2499e-6, -0.01394, -0.07129, -0.038483, 0.037397, 0.026244, -1989e-6, -0.01741, 7093e-6, 4709e-6, 0.030697, -336e-5, -0.10978, 0.050871, -5952e-6, -2325e-6, 0.021768, -0.036033, 0.039736, -0.042604, -0.085331, 0.079243, 0.033031, -0, -2994e-6, 0.032954, 0.030759, 0.014501, 0.053165, 0.023743, 0.029477, 0.074864, 57e-5, -0.051954, 0.101266, -0.097738, -0.020395, -0.012717, 0.152971, -0.039259, -0.040705, 0.049774, -0.051585, -0.066473, -0.015286, 0.102547, -0.020333, -0.062598, -0.044316, 0.030361, 0.023904, 0.045291, 0.013249, -0.072941, -0.054658, 0.132094, 0.082865, -0.082525, -6023e-6, 0.010158, -0.054387, 0.079282, 0.04692, 0.080049, 0.033991, 0.093268, -0.033514, 0.017251, 0.013578, -6014e-6, -0.028306, 0.018839, 0.045081, -0.106407, 8776e-6, -0.01221, -0.021732, 0.093955, 0.027889, 0.072479, 0.032778, -0.066407, -414e-6, -0.01202, 0.105599, -0.116004, -0.019147, 0.025615] },
|
|
4783
|
+
{ name: "flywheel_calibration_export", category: "diagnostics", tier: 3, descriptionHash: "d12002e391532bdb", embedding: [-0.043151, -0.028747, -0.110373, -0.02454, 0.097957, -0.027982, -0.028054, 0.023651, -0.022986, -7363e-6, 0.040693, -0.069468, 0.047009, -0.04435, -0.070681, 0.015087, -0.052879, 0.08403, -0.075465, -0.073593, -0.015633, 7254e-6, -0.010422, 0.052098, 0.023839, -0.040941, -0.113517, 0.025784, -0.047017, -0.086203, -0.039853, 0.092087, 6311e-6, 0.055578, 0.046934, 0.024145, -0.031032, -7065e-6, -0.025694, -0.065238, 3322e-6, -0.066588, 0.014168, 0.020333, -0.017294, 0.032088, -0.043026, -0.025205, -0.085271, 0.098234, -0.035423, -0.017309, 3441e-6, 0.120478, 0.021849, 9778e-6, 2811e-6, -0.033012, -0.070179, -0.027745, -0.037979, 0.042418, -0.055874, 0.035854, 0.042264, 0.031711, -0.027069, 0.030821, 0.060004, -0.029945, -0.029059, -0.03716, -2027e-6, 0.023757, 0.027305, 0.020938, -0.021345, -3664e-6, 0.031239, -0.072679, -0.024336, 0.061639, 3704e-6, 0.026186, 0.060391, -0.014138, 0.012133, 0.035046, 0.03823, 0.038359, -0.041238, 0.011151, 0.086689, -0.02155, -0.062774, 0.071885, 0.016104, -0.138063, 0.061398, 0.037782, -0.045155, 0.039388, 0.035442, -0.036559, -0.031679, 0.021635, 0.062608, 0.035494, 9485e-6, 0.052885, 1514e-6, 0.101226, 0.041998, -0.07836, 5382e-6, 7444e-6, -0.1156, 0.011058, 0.059302, 0.014271, 0.057872, 519e-6, 0.110321, -0.041123, 0.052196, 0.016932, -0.071835, 0, -7365e-6, -676e-5, -0.022939, -2208e-6, -0.037852, -7037e-6, 0.012074, -0.032188, -0.025075, 0.055906, 0.014341, 0.108413, -0.017493, 0.054034, 0.130505, 8619e-6, -0.012307, 0.058563, 0.021027, -0.015831, 0.097351, -0.08101, -0.030275, -166e-6, 0.077575, 0.083492, -0.036993, -0.020113, -0.024786, 0.062213, 0.023922, -2497e-6, -0.025882, -0.093617, 0.062487, 0.025607, -0.029908, -0.07741, -0.056194, 0.051365, -0.018562, -0.047391, 0.014785, -0.059346, -0.027524, 4584e-6, 0.027421, 0.011636, 0.094121, 0.010444, -0.011872, -0.050897, 0.014458, -0.098625, -0.023156, 0.036943, -0.018899, -0.092035, -0.01994, 0.013285, 34e-5, -0.01309, -0.060064, -0.037619, 3067e-6, -0.044813, -0.070553, -0.048518, 0.042742, 0.016672, -0.046663, 609e-5, -0.018536, 0.019872, -538e-5, -0.033504, 0.01629, 0.068453, 0.04816, -0.061902, 2602e-6, -0.041208, -0.069412, -0.061394, 0.044745, 0.03189, -3616e-6, -0.02431, -0.103303, -5137e-6, -0.071325, -0.026847, -0.010565, 0.014512, -0.074558, -0, -0.104496, 0.016688, -4631e-6, 0.072727, 0.027032, 0.024146, 0.046259, -0.063635, -0.020493, 0.047994, -0.120766, 0.032264, 0.012858, -0.062734, 0.09019, -0.035209, -0.028002, -0.039884, -0.010585, 0.011769, 0.066759, 0.040681, -0.093794, 0.089333, 0.03071, 0.02613, -0.020585, 6145e-6, 0.040115, 7684e-6, 0.018434, -0.018217, 0.027863, -0.03183, -0.079247, -0.104475, 0.031586, -0.098367, -0.060464, 0.021931, 0.017772, 2458e-6, -0.086856, -0.045287, -0.041293, 7234e-6, -0.014764, 0.053331, 0.085723, 8719e-6, 0.039633, 522e-5, -0.05603, 1663e-6, 0.024564, 0.071287, 0.046585, -0.0103, 0.02064, -0.042407, 0.044779, 0.031135, -0.012163, 0.058795, 0.065974, -0.050222, 0.055523, 0.019929, -0.126388, 0.072091, 0.02456, -376e-6, 0.077875, -0.052855, -1379e-6, -0.074838, 0.013047, -1036e-6, 0.015763, -0.050549, 0.037595, -0.037505, 0.078487, 0.065928, 0.069305, -0.072451, 0.043196, -0.023034, 0.038925, -0.035181, -0.062489, -0.032256, -0.058673, 0.031133, 0.016172, -0, -0.031203, 0.066477, -0.028214, 0.084131, -0.014262, 0.033775, 0.014904, 0.044892, -0.019422, -3977e-6, 0.090432, -0.066829, -0.070909, -873e-6, 0.070715, -0.046484, 7122e-6, 0.097586, -0.102637, -0.051142, -0.037805, 0.066175, 153e-6, -0.066766, -0.019748, 0.047319, 0.026276, 0.062859, 0.096949, -0.028826, -0.042396, 0.027141, 0.073065, -0.033981, -0.053187, 0.113398, -0.010267, 0.069036, 0.015607, 0.099084, -0.045995, 0.083179, -0.010373, 0.037204, 0.030909, 865e-6, -0.074503, -0.02082, 2381e-6, -0.024656, 0.074918, -0.100402, 4451e-6, 0.111905, 0.037799, 0.053336, 5864e-6, -0.047106, 0.060234, 0.010076, 0.105937, -0.089326, -671e-6, -2374e-6] },
|
|
4784
|
+
{ name: "flywheel_config", category: "diagnostics", tier: 2, descriptionHash: "aebdc36aacce9928", embedding: [-0.059225, 0.10391, -0.02162, 0.065111, 27e-5, -0.034127, 0.033291, 0.014553, -0.098505, -0.07895, 0.048079, 0.020383, -0.018307, -0.133058, 0.064912, 0.05429, -0.060894, 0.035445, -8473e-6, -0.058357, 0.066036, 0.025782, 0.01984, 0.029643, -0.030224, 0.044375, -0.065824, 0.047432, -0.023369, -0.024651, 4825e-6, 0.185738, -0.086504, 0.011058, -0.013073, 0.018026, 0.020326, -0.017655, 0.020629, -0.03398, 0.080037, 0.038411, -9044e-6, -0.034224, -0.036048, 0.03711, -0.042105, 0.037185, -0.025917, 0.02915, 6383e-6, -0.098008, 0.061995, 0.021431, 0.107532, 0.081231, 0.017515, 0.059801, -0.021962, -0.073957, -0.011148, 7428e-6, -0.040997, -1528e-6, -0.037369, 8213e-6, 742e-5, -0.021073, 0.046273, -0.027596, -8608e-6, -0.046976, 0.053629, -0.086548, -9412e-6, -0.010478, -7777e-6, -0.029599, -0.020129, -0.025619, -0.078474, 9094e-6, 0.049173, 0.060152, 0.078738, -0.03965, 0.021897, 1614e-6, -1817e-6, 0.043278, -0.078449, -0.087631, -0.032263, -0.098587, -0.058032, 0.12851, -0.024033, -0.106862, -1755e-6, 7866e-6, -5297e-6, 489e-6, 0.098687, -0.015227, -0.01117, 0.018838, 0.014278, 0.02877, -0.037781, 0.070334, -131e-6, 0.055482, 0.121882, -0.046246, -0.058546, 0.01953, -0.026714, 0.085349, 0.0501, 0.116383, 0.123448, -3219e-6, 0.101327, -0.029493, 0.016163, 1603e-6, -0.026129, 0, 0.038384, -0.035252, 0.025106, 0.02631, -6867e-6, 0.029122, 0.082087, -0.028114, 0.046572, 0.032269, 0.011876, 0.074852, -0.08686, -3908e-6, -0.043777, -0.036888, -0.013183, -0.036624, 0.051247, -6266e-6, 0.032922, -5207e-6, -0.079304, -0.032245, 0.087412, -0.035419, 5895e-6, 0.04862, -0.094451, 4139e-6, 0.120474, 0.032399, -0.03697, -0.011629, 488e-5, -0.05221, -0.043399, -0.025656, -0.091814, -0.072525, 0.032541, -0.093893, -0.046769, -0.057409, -0.072336, -0.038388, -0.034527, 8257e-6, 0.124, -0.050092, 0.035869, 911e-6, 7636e-6, -0.092772, 0.042671, -0.037856, -4791e-6, -0.027682, -0.01674, 6616e-6, 0.042022, -0.058338, -0.025032, 0.023033, 0.02014, 0.010386, -0.081075, -0.056091, -0.025045, 0.05071, -8124e-6, -0.038773, -0.067775, 0.037393, -0.032504, -0.045774, -0.067898, -0.026729, -0.02248, -652e-5, 0.060621, 0.026134, -0.095051, 0.096309, 0.052621, 0.014743, 0.014171, 0.041505, 773e-6, -0.05052, -0.117352, -0.079442, -3833e-6, -0.04934, -0.012011, -0, -0.019206, -0.010626, 0.040394, 0.058355, 1701e-6, -0.013322, 0.097753, -0.019305, 0.026872, 0.044765, 0.041497, 0.037974, -0.056694, -0.075165, 0.055747, 0.031415, -0.1409, -0.04789, 0.079068, 0.021839, -348e-6, -0.052733, -4623e-6, 0.095979, -0.042413, -0.042623, -0.035552, 0.056016, -0.035626, -0.015773, -5045e-6, 0.025219, -4777e-6, 0.124302, -0.067617, -0.054526, 1167e-6, -359e-6, -0.051857, 0.1014, 0.027203, 0.019312, -0.029368, 0.015214, 0.023187, -0.011919, 0.031915, -5381e-6, -0.02004, -0.052561, 0.070546, 273e-5, -0.048983, 0.011783, 0.053751, 0.012552, 0.023346, -0.047499, 0.04227, -0.066214, -0.014083, -0.047284, -0.036548, 0.069213, -0.04779, -0.051856, -87e-6, -0.014734, -0.019238, 0.060372, -0.077524, -0.022034, 0.095298, -0.039598, 7014e-6, -0.052747, 4621e-6, -0.044095, 0.066253, -0.056404, 0.048739, -0.068244, 2399e-6, 0.014307, -0.060532, 0.024439, -0.032738, 0.026323, 0.108157, -0.025592, -0.033402, -0.015648, -0.093945, 0.019707, 1797e-6, -0, -0.020482, 0.020003, -0.031821, -0.011348, 0.036036, 0.022002, 0.025974, 0.016115, -8058e-6, -0.053627, 0.050479, 0.023113, 0.03551, -96e-5, 0.053741, 7677e-6, 0.020211, 0.114956, -0.021517, -0.014269, -0.025826, 0.035251, -0.011465, 0.049311, 0.050622, 9008e-6, 3753e-6, 1484e-6, 0.048047, -8725e-6, 1466e-6, 0.023503, 0.103521, -0.019423, -0.111384, 0.021678, -0.078434, 0.0646, 0.080508, 0.075299, 0.026362, 0.038688, -0.05668, 0.011469, -0.117342, -0.051155, 0.073877, 0.041468, -3937e-6, 3248e-6, 0.0337, -415e-6, 0.022523, 0.045439, -0.095262, 0.025866, 6122e-6, -0.031659, -2784e-6, -0.060885, 3632e-6, -0.036247, 5738e-6, -0.018335] },
|
|
4785
|
+
{ name: "flywheel_doctor", category: "diagnostics", tier: 2, descriptionHash: "4e2d49668c603e48", embedding: [-0.068159, -97e-4, -8316e-6, 2827e-6, 0.035385, -0.092165, -0.017895, 0.018708, -0.093748, -274e-5, 0.023753, 0.033799, -0.027346, -0.020014, -0.026207, 0.021814, 0.024974, -0.06851, -9324e-6, 0.01022, -0.053303, 0.014341, -0.048827, 0.096762, -0.074258, -0.013911, -0.108424, 0.020566, -0.045054, -0.120665, 0.015247, 0.113715, -0.118292, 7952e-6, 0.029158, 0.010451, 0.050375, -0.06037, -0.088725, -0.115788, 6278e-6, -0.052371, -5685e-6, 0.05175, -0.01545, -0.024558, 0.018881, -0.035852, 414e-5, 0.047743, -0.093434, -0.069321, 0.120021, 0.082687, 0.055178, 0.014811, 0.019712, -9388e-6, -0.074668, -0.034993, 0.011499, 0.024053, -0.030198, 0.035379, 0.023113, 0.039744, -0.016928, -0.08979, 0.06345, -2947e-6, -0.035243, -0.048376, -0.021355, 0.079947, 0.019871, 6451e-6, 0.015643, -0.114392, 0.064707, -0.079437, -0.098131, -0.024254, 2304e-6, 0.010767, 0.05104, -0.015165, 2186e-6, -3364e-6, -0.049575, 2175e-6, 0.079475, 0.037069, 0.100615, -0.014219, 0.036689, 0.073451, 294e-5, -0.108583, 6864e-6, 0.046664, -0.050257, 2715e-6, 0.069145, 0.024369, -0.01079, 0.059171, 0.066379, 0.022366, -0.01869, -0.016876, 0.045518, 0.047945, 0.075024, -0.051961, -0.025296, 0.015675, -0.107079, 0.033846, -0.028233, 0.08747, 0.093277, -7825e-6, 7844e-6, -0.041099, 0.080147, 4783e-6, -0.053637, 0, 0.045068, -0.019972, 0.019524, 0.084499, -3809e-6, 948e-5, 0.02887, -3461e-6, 5236e-6, 0.024611, 2736e-6, 0.04684, -0.030135, -0.081745, 0.072116, -0.046022, -0.01851, 0.050532, -0.018323, -0.02177, 0.054426, -0.118081, -0.052051, -0.021733, 0.023652, 0.086033, -0.019876, -2616e-6, 0.073633, 0.053254, -0.034764, -9544e-6, -0.040839, -0.051221, 0.040202, 0.029287, -0.054168, -0.012787, -0.057711, -0.058937, -0.063616, -0.023772, -0.026122, -0.051172, -761e-6, -0.044393, -0.015923, 0.020681, 0.01655, 0.028113, -0.010148, -0.02688, 0.048685, 4584e-6, 0.01703, 0.028069, 0.028326, -0.045078, -2268e-6, 0.093048, 0.078452, -0.019307, -0.064194, -0.052766, 0.012123, -6924e-6, -6913e-6, -0.038818, -3007e-6, 0.081751, -0.022088, -0.026136, 0.069506, 0.079826, 0.023335, -0.041071, -0.054342, -0.032985, -0.049283, -1989e-6, 0.02106, -0.042281, -0.046439, 0.029843, 0.038857, -0.022499, -0.049262, 0.02169, -0.091758, 9676e-6, -0.063663, -2825e-6, 0.076254, 0.022516, -0.034855, -0, -0.122184, -0.04042, 0.01771, 0.033598, -3287e-6, 0.016247, 0.020735, -0.015474, -0.024291, 0.041398, 0.029381, 0.037687, -0.080262, -0.027227, 0.078198, -0.024337, -0.088312, -0.113531, 0.062405, 0.091393, 0.085382, 0.096076, -0.113738, 0.119395, -0.020569, 0.064318, -0.056739, 0.035816, 0.024337, 0.011551, 0.053957, -0.021048, -0.011341, 0.057299, 0.033509, -0.058991, -0.022623, -0.061364, -0.057659, 0.013639, 0.082604, 1259e-6, 0.014852, 0.045218, -653e-5, -0.083175, -0.022754, 2396e-6, 0.025317, -0.036721, -5885e-6, -0.027386, 0.023885, 0.025623, 0.03515, 0.051653, -0.042178, -5321e-6, -0.044708, -0.039291, 0.05322, 3576e-6, -0.028228, 0.016311, -6953e-6, -0.048312, 0.069298, 0.015769, -5066e-6, 0.057761, -0.059608, -8159e-6, 0.01151, -0.083613, 0.036161, 0.015143, 7484e-6, -0.022681, -0.014505, -0.044392, -0.010017, -0.070561, 0.049129, 0.02356, 2047e-6, -0.056022, -4925e-6, -0.018215, 0.062636, -0.052526, -77e-6, -0.029784, -0.104525, 0.035763, 8525e-6, -0, -0.019813, 0.027174, 0.011277, -44e-4, 0.053141, -0.062507, -0.04434, 0.025809, -0.036473, 0.043392, 0.044643, -0.043677, -0.033982, -0.086188, 0.099454, -0.058779, -0.085731, 0.15122, -0.10309, -0.074659, -0.061095, 0.045737, 1727e-6, -0.025891, -0.054238, 0.02676, 0.055477, -0.016036, 0.070252, -0.02109, -1598e-6, 0.069196, 0.073356, -0.032933, -0.039402, 0.022476, -445e-5, 0.068593, 0.030356, 0.035209, 0.027336, 0.1334, 131e-5, 0.059699, -0.026275, -0.010754, -0.016832, 8322e-6, 0.027492, -0.113487, 4447e-6, -0.027066, -0.015946, 0.089014, -0.057551, 0.079814, 0.020247, 0.021221, -0.035536, -0.013569, 0.134542, -0.054626, 0.04277, 0.017544] },
|
|
4786
|
+
{ name: "flywheel_learning_report", category: "diagnostics", tier: 3, descriptionHash: "4fef1b36efac0e54", embedding: [-0.021186, -9585e-6, -0.056346, 0.022425, 7599e-6, 0.017011, -2592e-6, 0.087822, -0.043868, 0.015294, 0.054437, 0.045418, 0.015238, 0.026525, -0.104003, 0.068885, -0.027236, -0.025643, -0.022937, -0.054574, 0.05291, 0.015433, 0.029146, 0.111153, 0.013718, -331e-6, -0.105826, 0.044595, 1963e-6, -0.113602, -0.066871, 0.128158, -0.073951, -0.02387, 2816e-6, -0.01281, -0.010694, -0.016013, -0.02814, -0.081164, -0.015779, -0.04341, 0.079849, 8938e-6, -0.017391, 0.034439, -0.05734, -0.033482, -0.040356, 0.069207, -0.136439, -0.07328, 0.110174, 0.019154, 0.052172, 0.094646, -0.014484, 0.011051, -0.084833, -0.092476, -0.035152, 8924e-6, -0.09295, 0.025143, 0.012741, -8545e-6, -0.048587, 0.018497, 0.03247, 0.035483, -0.025431, -0.024782, 1764e-6, 0.039639, 0.06674, 0.03227, 0.021026, -0.041708, 0.041089, -0.083402, -0.043805, 0.034508, 0.018437, -4163e-6, 0.04926, -0.045826, 0.057279, 0.053853, 995e-5, 0.050587, -2688e-6, -0.018053, 0.038921, -0.043408, -0.049559, 0.079663, 1279e-6, -0.146275, 0.030757, 0.052121, -5737e-6, 0.035592, 0.050058, -0.012624, -0.064879, 0.026374, 0.011057, 0.063444, 0.051775, -0.035156, -0.022324, 0.030146, 3356e-6, -0.031032, -0.053536, 5347e-6, -0.097548, -0.029803, 0.027824, 0.07571, 0.04498, 0.015188, 0.011516, -7633e-6, 0.024767, -0.067982, -0.112716, 0, 0.018246, -0.022353, 787e-6, 6018e-6, -2092e-6, -0.043128, -0.074205, -2426e-6, -0.02107, 2788e-6, -0.033091, 0.100454, -0.014069, -0.011313, 0.015868, -0.078659, -0.108964, 0.017352, -0.043389, -0.080139, 0.062651, -0.080356, 1223e-6, -0.045576, 0.058364, 0.045336, 0.014572, 0.044892, -0.018985, 0.059512, 0.016461, 0.027537, -0.098466, -0.060165, 0.048652, 3883e-6, -0.012377, -0.072609, -0.014848, -0.01425, -0.021552, -0.068011, -0.057223, -0.059405, -0.016369, 0.011789, 0.078687, -701e-6, -0.047641, -3443e-6, 1821e-6, -0.07163, -0.020988, -0.08846, 0.068877, 0.100113, -0.025055, -6685e-6, -0.0103, 0.049186, 0.065707, -0.029127, -0.051544, -0.056414, 0.042177, 0.05973, 0.04643, -0.026044, 0.051543, -0.021293, 1628e-6, -0.045794, -6131e-6, 0.01814, 0.054033, -0.051718, -0.014907, -0.059407, -0.053891, 0.020746, 0.019381, -0.119741, -0.058533, -0.048723, 0.071378, -0.034292, 0.032555, -0.066247, -0.084436, 341e-5, -0.04586, -0.022372, 0.051247, 0.139399, -1358e-6, -0, -0.083853, 0.068859, 0.034924, 0.074772, 0.047004, 0.01092, 0.024272, -0.017579, -0.038427, 0.023263, -0.020278, 0.030865, -0.085693, 0.018681, 0.027334, -0.045906, -3018e-6, -0.033879, 0.020861, 0.043879, 0.083481, 0.085467, -0.154634, 0.043358, -8417e-6, 8457e-6, 0.030503, 0.06746, -0.020027, 0.031973, 0.044676, -0.026668, 0.011537, 0.020517, -0.038945, 0.017021, 0.040823, -0.107963, -0.038568, 0.021077, 0.085888, -0.045902, -6917e-6, -0.094621, -0.021572, -0.038873, -0.040389, 0.060635, 0.062467, -3675e-6, -1153e-6, 2775e-6, -4088e-6, -0.077601, -4693e-6, -3578e-6, 0.09817, -0.026107, -4141e-6, -3469e-6, -0.028572, 722e-5, -349e-5, 0.030173, 0.022096, -0.093214, 0.036611, 4767e-6, -0.045183, 0.065403, 0.031863, 0.12248, 0.016209, -0.076876, 0.012748, -0.015047, 1629e-6, 0.011822, 0.01192, -0.121337, -0.015113, -0.029585, 0.084031, 0.070771, -0.060296, 0.018679, -0.047564, 0.049713, 0.052834, -0.010917, 0.046258, -4401e-6, -0.020765, 0.04474, -0.028182, -0, -6628e-6, 0.045243, 0.027589, -2494e-6, 0.094964, 0.069853, 0.041734, 0.102614, -0.076543, 0.013569, 0.06037, -0.014005, 6699e-6, -1705e-6, 0.063998, -0.013225, 4981e-6, 0.061695, -0.064881, -0.057827, 0.03218, -4206e-6, 0.048332, -7329e-6, -0.070774, -0.033688, -8215e-6, 0.061082, 0.011728, -0.020027, -0.021882, 0.10874, 0.047247, -0.076803, -0.020165, 0.065841, 5251e-6, 0.017824, 0.011555, 0.040963, -0.012849, 0.088554, 0.036488, 0.024938, -0.046052, 0.043302, -0.036344, -0.109217, -0.023292, -0.062805, 0.074835, -0.024116, -0.013071, 0.049418, 0.04674, 0.071191, 0.014795, -0.052033, -0.049657, 0.01571, 0.080675, 61e-5, 2759e-6, 0.072741] },
|
|
4787
|
+
{ name: "flywheel_trust_report", category: "diagnostics", tier: 3, descriptionHash: "4d0c1bfe92a79c21", embedding: [-0.060119, 0.010256, -0.076909, -0.035611, -0.012674, -0.07487, 0.034864, -0.020405, -0.054977, 0.03753, 0.038179, 0.014937, 0.018975, -0.030475, -1897e-6, 0.069068, 0.01322, -0.04374, -0.041726, -0.042243, 0.05175, -0.018198, -0.068083, 0.065282, -0.036165, 0.040954, -0.071519, 0.03156, -0.035296, -0.131768, -0.027201, 0.094009, -0.105172, 0.04836, 0.018341, 0.019053, 0.060975, -0.051878, -0.040986, -0.130696, 0.038592, -0.050222, -6598e-6, 0.057529, -0.075817, 0.074095, 519e-5, -0.056811, -0.046237, -0.043113, -0.080335, -0.043718, 0.071778, 0.069155, -0.026035, -9476e-6, 0.019143, 351e-5, -0.060315, -0.051947, -0.039468, 0.029379, -0.046245, 0.064948, 0.05835, 0.016413, -0.045719, -0.063343, 0.029957, -0.077549, 0.017217, -0.051074, -2857e-6, 2705e-6, 0.023821, -0.055948, -6232e-6, -0.05653, 0.055895, -0.103391, -7935e-6, 0.072054, 0.021462, 0.059304, 0.028503, -0.058721, 585e-6, 0.034077, 7006e-6, 0.05212, -6022e-6, -0.024102, 0.04244, 6909e-6, -0.018268, 0.065307, 0.016973, -0.134464, 3483e-6, 0.076906, 3e-5, 0.052638, 0.046745, -0.05381, -0.060025, 0.056659, 0.061799, 0.071633, 0.024265, 7201e-6, -0.061137, 0.014234, 0.010218, -0.049921, -0.042065, -9485e-6, -0.086368, 0.036417, 0.020835, -6728e-6, 0.087575, 0.0101, 0.061902, -3675e-6, 0.056898, -0.022297, -0.090128, 0, -0.013, 9059e-6, -0.037309, 0.086991, 0.017487, 0.029839, 2987e-6, -0.017409, -0.075439, 0.050557, 0.051896, 0.114446, 0.014291, 0.043406, 0.084879, -0.061808, -0.023882, 0.044126, 0.081297, -0.046698, 0.051728, -0.018263, -0.023708, -9842e-6, 0.047678, 0.025008, -0.054317, 0.012592, 0.047582, 0.065008, 0.035189, -0.011953, -0.11534, -2979e-6, 0.026131, 0.066959, -0.016974, -0.129615, -0.014272, -0.032757, -0.034809, -0.077042, -0.064965, 1948e-6, -0.067271, -8693e-6, 7204e-6, 32e-4, 0.046393, 0.062744, -7246e-6, -0.030205, 0.023814, -0.024645, 0.036677, -2238e-6, -0.020472, -3321e-6, 0.014415, 0.058362, 0.077375, -0.059302, -0.148235, -0.041107, 0.031728, -0.029855, -0.012745, -0.041469, 0.055398, 0.04845, -0.056996, -0.014185, 0.035692, 0.083774, -0.048745, -0.010218, -0.055296, -0.05814, -0.022734, -0.014306, -0.047243, -0.03288, -0.042629, 0.046969, 0.025621, -0.016845, -0.013927, -0.015984, -0.057402, -0.024304, -0.087497, -0.032708, 0.082734, 0.077375, -0.054442, -0, -0.088586, 1968e-6, -0.032735, 0.062943, 0.021184, 0.024607, -5061e-6, 24e-6, -0.067594, 0.046816, -0.028194, -3942e-6, 8816e-6, -1361e-6, 0.062531, -0.050465, -0.031475, -0.080575, 9284e-6, 0.05166, 0.054173, 0.088784, -0.103555, 0.097153, 0.013956, 0.058578, -0.081443, 0.013078, 204e-5, 0.029316, 0.034373, -0.036787, 0.010693, 0.021866, -0.032105, -0.015064, 0.044242, -0.015263, -0.044867, -0.014973, 0.04599, -0.062903, -0.029313, -0.029039, -0.054219, 0.010295, -0.021678, 0.02326, 0.013727, -0.012916, 0.036383, -0.033194, 0.053818, -0.065466, 0.026549, 0.044708, 0.017083, -0.020417, 0.031606, 4587e-6, 0.106957, 0.026093, -0.056626, 0.084501, 0.041408, -0.018202, 0.01623, 0.022721, -0.02027, 0.055376, -0.031045, -0.024517, -0.041753, -0.085988, 0.090214, -3632e-6, 0.029996, -0.053555, -3959e-6, -3777e-6, 0.038989, -5695e-6, 0.025652, 0.032177, 0.059151, -0.042887, 5399e-6, -0.019383, 0.04048, -0.03704, -7251e-6, -0.024819, -0.0939, 0.0684, 0.019171, -0, -0.013619, -286e-6, 0.025393, 0.016317, 0.072682, 0.012826, 0.065524, -0.015114, -0.072537, 0.025814, 0.055879, -0.117841, -0.053589, -0.031999, 0.115953, -0.016483, -0.032655, 0.125129, -0.080208, -0.066485, -0.010427, 0.031161, -0.03198, -0.037974, -0.026732, 0.014737, 0.028635, 0.051556, 0.024324, 0.061032, -0.05209, 0.074629, 0.033793, -0.024416, -0.088206, 0.078003, -0.08593, 0.022912, 0.013224, -1615e-6, 1246e-6, 0.144746, 0.03441, 0.047549, -6781e-6, 0.018197, -0.08157, -5423e-6, 0.016332, -0.074007, 7367e-6, 0.02365, 0.028743, 0.181418, -0.045778, 0.057452, 5892e-6, 7851e-6, -0.019417, 0.014198, 0.133433, 0.01284, 0.052415, -0.032524] },
|
|
4788
|
+
{ name: "get_all_entities", category: "diagnostics", tier: 3, descriptionHash: "60c00b6f03b73255", embedding: [-0.020054, -0.013646, -0.068707, -2311e-6, 0.036473, -0.019067, -0.030476, 584e-5, -2056e-6, -0.032505, 0.045768, -0.029996, 0.036339, -0.033754, 0.018001, 0.044041, -4363e-6, 0.12012, 5026e-6, -0.059147, 0.043356, 0.030216, -0.02137, -4763e-6, -0.050039, -0.066518, -0.106303, -0.024145, 0.015941, -0.096848, -0.012747, 0.054654, -0.085877, 0.038409, 0.080855, 0.096682, 0.04958, -5136e-6, 0.016047, -0.041207, 0.023195, -0.031669, -0.046863, -0.023537, 43e-6, -0.020856, -0.102995, -0.032209, -0.051094, 0.015181, -0.033955, -0.034025, -0.011726, 0.104708, 0.031547, 0.090622, -0.036825, 7276e-6, -0.065254, 0.046417, -0.024549, 0.036084, -2668e-6, -0.01918, -0.012371, 0.02697, 0.065058, 0.087364, 0.047996, -0.117605, -8458e-6, -0.082526, -0.028388, 6224e-6, 9797e-6, 0.069591, -2812e-6, 0.027302, -0.093195, -0.09795, -0.059124, 0.087289, 0.037999, -3931e-6, 7286e-6, 0.103298, -8968e-6, -0.04402, -0.03551, 0.053722, 4193e-6, -0.096263, 0.055491, -3041e-6, 0.056694, 0.06257, 0.021165, -0.143788, 0.063023, 0.032218, -0.053089, 0.061748, 0.085346, 0.017517, -0.010571, 0.03832, -0.016652, 0.051613, -0.025388, -0.036339, -0.045961, 0.06774, 0.014641, -0.071144, 0.048853, -0.041562, -0.071169, -2655e-6, 0.063012, -3325e-6, 0.13129, 0.012036, 0.054661, -802e-5, -0.09669, 0.010295, -0.060457, -0, 0.15394, 0.097085, 0.030862, -8932e-6, -0.042523, 0.011031, 0.013693, 0.026166, -0.018292, 0.031089, -0.030427, 0.069142, -0.024142, -0.04589, -0.013202, 0.02026, 946e-6, 0.097896, 0.02604, 0.011396, -8666e-6, 0.072862, -0.028017, -5472e-6, 0.105696, 0.033229, -0.038372, -0.024977, -0.047198, 0.011636, -1816e-6, -0.015274, -0.020758, -3437e-6, 0.038527, 0.035199, -0.026052, -0.07158, -0.095369, -0.050326, 0.014876, -0.044307, 0.034618, -0.053013, -0.05831, 0.012976, -0.046147, -0.069868, 0.011823, 6022e-6, -1569e-6, 0.019264, -0.022537, -0.026002, 4398e-6, -0.06863, -0.023041, 0.020631, 9668e-6, 0.055171, -2964e-6, -0.050193, -0.047253, -0.031033, -0.066162, 0.031898, -0.097887, -0.051323, 0.058414, -519e-5, -0.036794, 0.082505, 0.043511, 0.024701, 7302e-6, -0.08224, -0.092991, -0.079705, 0.020788, 0.022394, -0.07151, -0.018007, -0.016397, 0.08435, 0.0375, 0.02223, 0.016912, -0.123587, -0.035697, -0.085263, -0.059695, 0.030202, 0.038268, -9919e-6, -0.027785, -0, 0.083884, -0.035139, 0.024349, -0.043665, -0.033535, -1122e-6, -0.026972, 0.031044, -0.112217, 0.040314, -5706e-6, 0.026558, 0.012318, -0.103009, 0.02628, 8232e-6, -0.019368, -0.117998, 0.05815, 0.119453, 0.011476, -6555e-6, -6787e-6, 0.045876, 0.077036, 0.038222, 0.010584, -0.054784, 0.028901, -0.055719, 0.094729, 0.011577, -0.077457, -0.013106, -0.048995, -0.045573, 3908e-6, -0.053804, -0.020815, -0.061626, 0.054045, -0.025422, -0.024733, -0.050225, -0.010641, 0.011822, -0.0121, 0.058003, 0.016533, -6999e-6, 0.066011, -0.044388, 0.023041, -0.021013, 0.024773, 0.074163, 0.029853, -3814e-6, -8989e-6, -0.014806, 0.050158, 0.040011, -0.049628, 0.11209, -0.036647, -0.068983, 345e-5, 0.02022, -0.133943, -0.036675, -0.025883, -0.07866, 5553e-6, -0.042808, 0.04541, -0.038794, -0.0548, -0.070474, 0.017811, -0.054802, 5e-6, -0.024987, 0.023976, 0.048792, 0.063495, -0.047946, 0.077475, 0.02002, 0.037485, -0.052254, -0.037949, -0.033594, -0.062102, 0.087092, 0.017263, -0, 6218e-6, 0.035944, -0.01475, -0.046934, -1555e-6, -0.017593, 2335e-6, 0.132826, -0.015665, 0.056465, 8325e-6, -0.03547, -0.099491, -0.040752, 0.077833, -0.012388, -9825e-6, 0.033262, -0.037085, -0.016925, -0.073774, 0.035398, 0.036686, -0.077185, 0.016961, 0.025858, 0.049021, 0.079385, 0.099136, 3501e-6, 7195e-6, 0.027126, 0.022865, 4997e-6, 0.010844, 0.137891, 0.011603, -0.027162, 0.010357, 0.081973, 0.026189, -0.027979, 699e-6, 0.080303, 0.056443, -0.029052, -9684e-6, 0.012121, 0.016109, -0.064919, -0.064935, -0.045685, 4886e-6, 9547e-6, -0.051055, 0.045105, 0.056024, -0.012273, 0.061971, 9549e-6, 0.078687, -0.0321, 0.049741, 0.043407] },
|
|
4789
|
+
{ name: "get_backlinks", category: "graph", tier: 2, descriptionHash: "4870f38bbd424b43", embedding: [-0.050124, -863e-6, -0.046565, 0.048027, 0.040758, 0.063685, -0.066151, 0.018311, -0.010179, -0.019557, 0.023069, 0.017516, 0.028866, -0.076529, 0.017097, 0.074012, -0.015424, 0.07537, 0.062416, -0.037019, 0.035522, 0.045962, 9691e-6, 5634e-6, 0.068781, 0.018824, -0.06783, 0.0421, 0.019299, -0.039497, 1225e-6, 0.04645, -0.07214, -0.038828, 0.047893, 0.072952, 0.033547, -0.038667, 0.071278, 0.010193, 0.027093, 0.064426, -0.020831, -0.030325, 4557e-6, -0.03812, -0.054252, 0.026864, -0.043553, 0.054476, -0.018807, -0.020762, -0.084506, 7288e-6, 0.04932, 0.081936, 0.023984, -633e-6, -0.044405, 0.041305, 0.08026, -0.073803, -0.063858, -0.10373, -0.045834, 0.057308, -0.011946, 0.091004, -8517e-6, -0.103525, 0.024842, -0.044775, 0.040845, 0.018442, 0.028797, 0.017727, -0.012826, 0.034162, -0.139941, -0.153762, 0.010824, -6532e-6, 0.056826, 0.06942, 0.043003, -9159e-6, 0.024634, 2603e-6, -2395e-6, 0.03587, 0.040527, -0.029075, -0.026411, -0.033278, 0.030287, 0.100144, -0.016007, -0.011234, 0.130836, 0.016327, 0.013876, 0.080742, 0.083822, 0.020824, 0.051174, 0.085123, 0.020524, 0.064808, -4429e-6, -0.086678, 23e-6, 0.021824, 0.037648, 8824e-6, 0.031521, -0.134117, -0.017392, -0.013969, 0.054615, 0.076172, 0.074208, 0.051227, 0.015858, 0.034658, -0.093651, -0.031368, -0.049741, 0, 0.068162, 0.057868, 0.048471, -0.103892, 0.027492, -0.020261, -0.040323, -147e-6, -8262e-6, -0.025603, -0.060448, -0.010116, 7392e-6, 0.01998, -0.062032, -0.017764, 3096e-6, 0.041205, 0.016008, -0.052717, -0.03793, -5724e-6, -0.022387, 0.010574, 0.066843, 0.059967, 135e-5, -0.036499, -0.037028, -0.015887, 1743e-6, -0.028595, 0.072519, -0.07235, -0.010897, 0.045825, -0.067033, 0.040839, -0.050378, -0.075756, 0.049311, -0.012151, 193e-5, 303e-5, -0.096418, -7524e-6, -0.099514, 0.047146, 0.046991, -0.039673, 101e-6, 0.012112, -8867e-6, 0.018295, 0.031569, -0.089506, -0.022521, 0.05769, -0.02627, 0.029678, 0.075047, -594e-5, -0.063554, 5263e-6, -0.06906, 0.031763, -0.05692, -0.052165, 0.024573, 0.011253, -0.048497, 8825e-6, 0.030022, -3363e-6, -0.011165, -0.059528, -0.139086, -0.061508, 0.042661, -0.036241, -0.105605, -0.043479, 0.010473, 4016e-6, 7128e-6, 0.012548, 0.019374, -0.209663, 0.015208, -0.05465, -0.108337, -0.031534, -4476e-6, -0.048679, 0.030592, -0, 0.074437, 0.083753, 0.075116, -0.042955, -0.018727, 0.095379, 0.018322, 0.039736, 0.017887, 0.155257, 0.025953, 0.019477, -6141e-6, -0.069495, 0.031461, 5451e-6, -1625e-6, 0.017307, 0.014599, -0.019618, -0.028015, -0.029489, 0.076312, 0.045749, 0.086173, 4297e-6, 0.036498, -0.083526, 6145e-6, -0.076812, 0.029529, -0.055891, -0.0603, -0.03154, -4445e-6, 0.04479, -0.037228, 0.046221, -0.012851, 0.048755, 0.087561, 0.024865, -0.013292, -0.032343, -0.022424, 0.024013, -0.054884, 0.083036, -0.100194, -0.062517, 0.068395, -0.030263, 0.075185, -0.074944, -0.016449, 0.037014, 0.030379, 0.025078, -0.11263, -0.0392, -0.025106, -0.019826, -0.074678, 0.02604, -0.016888, -0.029171, 0.016336, -0.04453, -0.063354, 0.043365, -0.015926, 0.020245, 3592e-6, -0.032726, 0.05207, 0.051117, -0.077446, -0.015906, -0.052344, -0.07123, 0.060146, -0.011617, 0.071481, 3793e-6, 0.019415, -0.035934, -2238e-6, 0.044523, 0.03131, 9889e-6, -0.046962, -0.029626, 0.049436, 0.037653, 0.044548, -0, -0.079332, -0.016678, -0.023311, -0.034219, -984e-6, 0.060952, -0.023865, 0.053612, -8206e-6, 0.06027, 0.043726, -0.106613, -0.054892, -0.054231, -0.096966, 2673e-6, 0.101509, 0.018558, 7942e-6, -8085e-6, -0.042636, 0.063013, 0.02559, 0.051084, 0.035531, -0.037119, -0.046688, 0.048424, 6863e-6, 1885e-6, 0.07011, -8507e-6, 4055e-6, -0.032705, -0.023276, 0.047406, 0.025942, 0.01684, -0.016557, 0.093589, 0.015589, 0.039161, -0.045391, 0.029276, 0.04247, -0.095811, -1365e-6, 0.020126, 0.025485, -0.049668, -0.078803, -0.060463, -0.015832, -0.065448, -0.107361, 0.044158, 6346e-6, 0.046894, -0.021174, -0.012442, 0.053169, 0.04496, 0.025901, -492e-6] },
|
|
4790
|
+
{ name: "get_common_neighbors", category: "graph", tier: 2, descriptionHash: "10d3e9490cada885", embedding: [-0.063341, -0.015878, -0.035842, -0.030831, 0.014074, 0.046044, -0.105189, 0.017685, -0.08348, -0.014823, 0.058534, -0.033778, 0.043781, -0.021703, 0.049398, 0.077547, -0.018666, 0.025425, 0.057234, -0.078077, 0.032773, -4192e-6, 0.031502, 0.029161, 0.053985, 0.029335, -0.057545, 0.044457, 0.061424, -0.015893, 0.016044, 0.073132, -0.040504, 0.031584, 8128e-6, 9501e-6, 0.018566, 0.030271, 0.086094, -0.011118, 7542e-6, 0.057805, 8884e-6, -0.060804, -0.040583, 0.029923, -0.12344, 0.046166, -0.061407, 0.01188, -0.026517, -0.042685, -0.085568, -564e-6, 0.118642, 0.103505, 0.022863, 21e-5, -0.019801, 0.014918, 0.055276, -0.062261, -0.05962, -0.052436, -0.035572, 0.02704, 0.024286, 0.102685, -0.039674, -0.040385, 0.014475, -0.022699, 0.025051, -8826e-6, 0.033972, 0.018486, -0.027402, -0.010317, -0.153897, -0.165191, -0.117053, 0.042879, 0.05019, 0.031828, 0.01348, -0.053463, -0.035418, -0.037238, 0.011616, 0.022681, -6372e-6, 0.019772, 3446e-6, 8703e-6, 0.013031, 0.098505, 0.013898, -0.052532, 0.091453, 0.055814, 0.025383, 0.060104, 0.044796, 0.010452, 0.057056, 0.053515, -0.02085, 0.05352, 0.029674, -0.098399, -0.011176, 0.010686, 0.016326, 0.03104, 0.021756, -0.104538, 0.087032, -4816e-6, 0.055006, 0.041365, 0.045252, 333e-6, -0.045383, -9183e-6, -0.080976, -0.017862, -0.050263, -0, 0.148229, 0.011595, 8502e-6, -0.059642, 0.017328, 0.015122, -0.093488, 0.02037, -0.044778, -0.037586, -0.050073, 0.030841, 0.01786, 1915e-6, -0.080918, -2884e-6, 0.021263, 0.036451, 4301e-6, -0.056913, 0.017255, 0.03213, 0.017121, 0.013444, 0.06101, 0.016688, 0.01413, -0.096934, 0.016088, -985e-6, -0.046281, -0.021513, 0.059817, -0.053864, -0.037898, 0.062326, -0.016529, 0.018515, -0.01065, -0.092781, 0.039061, -3105e-6, 0.053273, -0.039387, -0.027437, 0.013404, -0.123058, 0.031375, 0.055257, -0.028037, -1651e-6, -0.018413, -0.010158, 0.083893, 513e-5, -0.056188, 0.030571, 0.034394, 0.039727, 0.040435, 0.084649, 0.033309, -0.035486, 3144e-6, -0.050713, 0.035878, -0.097899, -0.069916, 0.060035, 0.011687, -0.01552, 0.049951, 714e-5, 7967e-6, -43e-5, -0.04853, -0.094172, -0.084339, 0.053795, -0.045522, -0.100201, -0.033037, -0.034609, 3399e-6, -0.045442, -0.023076, 0.016388, -0.144387, -0.016978, 0.031782, -0.097328, 0.015722, 0.019722, -0.042397, 0.035664, 0, 0.031818, 0.10318, 0.079322, 0.013198, 0.036182, 0.057027, 0.031212, -0.041155, 2e-3, 0.145204, 0.014973, -5233e-6, 0.028086, -0.040892, 0.066807, 0.030232, 855e-5, 0.056739, 0.027802, 0.02827, -0.012149, -2661e-6, -0.023336, 0.077599, 0.103314, 9387e-6, -0.020602, -0.083622, -7251e-6, -0.069261, -0.044486, -0.067779, -0.056084, -0.092123, 0.029292, 0.022728, -0.016324, -0.049316, -0.076905, 0.010067, 0.035081, 0.015126, -0.056355, 0.019151, -2695e-6, 0.056072, -0.023141, 0.065724, -0.124679, -0.041814, 0.053717, -0.012346, 0.048796, -0.038441, 0.012294, 0.03682, 0.036397, 0.093067, -0.080038, -0.016541, 0.032947, -0.018861, -0.095498, 0.072588, 0.01248, -0.061068, 0.02228, 0.011515, -0.043864, 0.096533, -0.050945, 0.055159, 0.0271, -0.133307, 0.069313, 0.023295, -0.05294, -0.018333, -0.045501, -0.055695, 0.016079, 0.014961, 0.084543, 0.016805, -0.025449, -0.030086, 0.058976, 0.046495, 8059e-6, 0.014572, -0.069922, -0.04009, -0.031723, -0.019753, 0.046163, -0, -0.092897, -0.036778, -0.027808, -0.028846, 5947e-6, 0.01102, 0.028648, 0.043357, -0.022711, 0.105197, 0.019326, -0.048616, -0.026748, -0.050055, -0.060153, 4274e-6, 0.050192, 0.021253, -0.033486, -0.012872, -0.059613, 0.050896, 0.014195, 0.023257, -0.019185, -0.040085, -0.037362, 0.03366, 0.046111, -962e-5, 0.019914, -0.035722, 0.011124, -0.066722, 0.023987, 0.027477, -0.010503, 0.078279, 0.012131, 0.055806, 0.023018, 0.04812, -0.041482, 0.073572, 0.102243, -0.019743, 0.050354, -8185e-6, 0.021125, -0.048161, -0.068318, -0.025936, 5306e-6, -0.054424, -0.119725, 0.024501, -1476e-6, 0.02838, 0.018997, -0.054791, 0.082279, 0.051431, 0.019392, 0.028587] },
|
|
4791
|
+
{ name: "get_connection_strength", category: "graph", tier: 2, descriptionHash: "33225ecec937d2e5", embedding: [-0.026809, 0.02671, -0.086216, -0.038664, -0.134261, 8538e-6, -0.020012, 0.064271, -0.070515, -0.063294, 0.036813, -0.059336, 0.050163, 0.018279, 0.078997, 0.084507, 8188e-6, -0.015423, -0.054905, -0.068863, 0.036863, -0.083104, -0.034141, -3655e-6, 0.100534, 0.048117, -0.088052, 0.06133, 0.089703, -0.025563, -0.03216, 0.023455, -0.067155, 0.010131, -0.052447, -0.063635, 0.048311, 628e-6, 0.010286, 0.019041, -3322e-6, 4435e-6, 0.055723, -0.031808, -394e-5, 0.040229, -0.140525, 0.101379, -0.076239, 9858e-6, -0.043061, 9876e-6, -0.034202, -5049e-6, 0.055811, 0.074849, 0.037358, -66e-5, -0.047432, 0.050646, 0.013504, -0.045671, -0.03729, -0.033037, -0.036363, 0.03506, 0.019004, 0.056145, -0.048727, 0.069233, 0.020347, -0.054373, -0.04723, -0.046918, 0.052518, 0.011563, -3394e-6, -0.033266, -0.054086, -0.093721, -0.052667, 0.049374, -0.023229, 0.038696, 0.024973, -0.037142, -8941e-6, -0.067856, -0.037272, 0.027859, 0.038073, 0.053494, -0.073269, 0.026004, 6525e-6, 0.107108, -0.052942, -0.080646, 0.020748, 0.04553, -0.022509, 0.018867, -0.018121, -0.014191, 8938e-6, 0.049567, -0.023839, 0.051951, 0.031556, -0.025991, 0.017902, 0.031725, 0.046762, 0.048684, 0.017021, 0.035729, 5151e-6, 0.045978, 0.090217, 0.075214, 0.092378, 0.019528, -0.053917, -0.037555, -0.068063, -0.040184, -0.014381, -0, 0.021725, 0.023644, 0.040967, 0.036911, -4663e-6, 44e-6, -0.141454, 0.029992, 2649e-6, 123e-5, -0.08878, 0.066363, -0.01932, -8446e-6, 0.020587, 4406e-6, 0.073747, -0.012103, 0.068228, -0.013908, 0.034167, -0.057725, 7759e-6, 0.013912, 0.134689, -253e-5, 0.036079, 0.014922, -0.047506, -693e-6, 3983e-6, -0.053387, 0.013307, -0.067696, -0.024704, -0.041551, 0.030945, 0.012928, 0.026881, -0.049502, -3047e-6, -0.010123, 0.032931, 0.010255, -0.061285, 0.015188, -0.060272, -1881e-6, 0.052158, 0.019055, -0.036532, -0.025559, 9806e-6, 0.079468, 0.029915, -0.027801, 0.017729, 0.104052, -0.012214, 0.044856, 0.014395, 5418e-6, 5602e-6, -1623e-6, 0.022965, 0.063533, -0.122788, -0.098693, 0.024327, -0.022565, -0.057959, 0.04523, -7522e-6, -0.028757, -0.070572, -0.067021, -0.050508, -0.042407, 0.097965, 0.019681, -0.113122, 0.014106, 0.0321, 0.035114, -0.041421, -0.022574, 0.031646, -0.099241, -0.028516, 0.020832, -0.1145, -1115e-6, 0.048399, -0.056422, 0.051043, -0, -0.039596, 0.113185, 0.081153, 0.013508, 0.079339, -1234e-6, 0.068654, -0.013937, 0.045707, 0.147174, 0.075496, 0.014525, -0.011712, -0.051364, 0.070404, -0.016505, -0.105575, 0.038155, 0.049789, 0.069934, -0.018372, 0.021822, -0.016392, 0.043892, 0.061907, -0.025326, -0.038833, -0.144022, 0.016854, -0.028177, -0.03168, -0.051913, -0.019198, 7282e-6, -0.01176, 0.032324, 0.015664, -0.061575, -0.011023, -0.020471, 0.049375, 0.062944, -0.024797, -0.056625, 6178e-6, 0.037172, 0.040245, -0.027412, -0.09028, -0.041384, 0.055559, 35e-6, 0.028099, 0.039081, -0.040766, 0.019739, 0.019313, 5157e-6, -0.086616, -0.039647, 0.012849, -0.051978, -0.019268, 0.033043, 0.047381, -0.053343, 0.048823, -0.032563, 408e-5, 0.05004, -8194e-6, 0.0727, 0.101545, -0.024471, 0.01117, -0.012319, -0.109388, -0.024302, -0.043637, 872e-6, -0.05554, 0.054774, 0.032663, 2333e-6, -0.013835, 8832e-6, 0.061662, 0.078932, 0.047912, 0.043619, -0.057556, 0.02029, -0.043055, -0.017543, -0.018076, -0, -0.036111, -0.126408, -0.043913, -0.048772, 0.034763, 0.037557, -0.01955, -0.02743, -0.024878, 0.085919, 0.032602, -0.019908, -0.068532, -0.054291, -0.055647, 0.012288, 0.023884, 0.037456, -5488e-6, -0.082492, -6175e-6, 0.035475, 0.040893, 0.073496, -0.036421, -0.056779, -0.031854, 0.034052, -6098e-6, 0.032583, 0.037207, -0.078464, 8575e-6, -918e-5, -0.010965, 0.02119, -0.042985, 0.082569, 615e-5, 0.131089, -0.014232, 0.032384, -0.028209, 0.088408, 0.150913, -8387e-6, 0.033524, 0.013766, 2081e-6, -0.056791, -0.033201, -7159e-6, -0.052697, -0.089736, -0.115876, 0.024138, -0.021215, 0.107921, -0.025744, -0.010864, 0.029122, 4756e-6, 0.025736, -0.055736] },
|
|
4792
|
+
{ name: "get_context_around_date", category: "temporal", tier: 2, descriptionHash: "6419fe5f1c0afccb", embedding: [-0.047365, 0.025265, 0.01178, 0.041429, 0.069222, -0.030196, -5112e-6, 1776e-6, 0.07266, -0.014668, 0.04362, 6862e-6, -0.037019, -0.031651, -0.014613, 0.027802, -0.047518, -0.048956, -0.070741, -0.044769, 0.026985, -0.020203, -0.033339, 0.023736, 0.047091, 0.040319, -0.05303, -0.012829, 0.07888, -0.011144, -0.030542, 0.092092, -0.07178, 0.014565, -0.017772, 0.014139, 0.059375, -0.013341, -98e-5, -0.045675, 0.023694, 9564e-6, -531e-5, -578e-6, -0.092422, -0.041611, 0.014757, -0.011081, -0.12437, 0.053333, -0.123517, -0.022851, -0.015511, -0.011502, -4989e-6, 0.107183, 0.014342, 0.092371, -0.012362, 8455e-6, -0.034861, -0.026241, -0.070378, -0.015361, -0.064996, 0.013123, -0.015616, 1499e-6, 0.119926, -0.14348, 0.028609, -233e-5, -0.048487, -0.037679, 0.066132, -0.083987, 995e-5, -0.012966, -394e-6, -0.209888, 0.016237, 0.025185, -349e-6, -1704e-6, 0.083938, -0.066372, 0.014085, 0.032072, -533e-5, 0.069166, 0.052699, -0.031992, 4031e-6, 0.034417, -0.010984, -0.025453, -3528e-6, 0.031341, 0.178393, 0.077094, 1293e-6, 0.13485, -0.052963, 0.100247, 0.097108, -1496e-6, -0.037352, 0.027658, -0.051497, 9182e-6, -0.010247, 0.013144, 0.025299, -0.050419, 0.010786, 34e-6, -0.012322, 0.047347, -0.014284, 0.100644, 0.139984, 3014e-6, -0.068943, -0.08061, -0.076943, 0.043307, 0.062138, 0, 0.07956, -0.088492, -0.048401, 0.04341, 0.021312, -0.012798, -0.017429, -785e-5, 0.047995, -0.051786, 3105e-6, 0.050544, -0.084534, -0.041324, 0.031148, -0.039157, -0.012779, 0.046071, 0.088595, 0.043327, 0.037566, -0.042194, -0.065885, -0.04941, 0.071588, 0.050439, -0.016113, -6323e-6, -0.082752, 8548e-6, 0.011935, -0.048298, -0.036196, -0.010669, 0.092141, 0.069305, -8645e-6, -0.057504, 0.011557, -0.076855, -0.045724, -0.033084, -0.037071, -0.066198, -0.056898, -0.035536, -0.049214, 0.052034, 0.0129, 0.071118, 0.022944, 0.071648, 0.027781, -0.014098, -0.029164, 0.022871, 0.019782, -0.026816, 0.024825, 0.061395, 0.14681, -4977e-6, -0.02128, -0.039818, -0.047973, 9729e-6, 0.023355, -671e-5, 0.056567, 0.075749, -0.023988, 0.075772, 0.068384, 0.014725, -6368e-6, -0.044782, -0.041287, -4224e-6, -0.035768, 0.02169, 0.038664, -0.035009, 0.023019, -0.025605, -4693e-6, -0.010487, 0.020381, -0.052885, -0.064436, -0.026636, -0.041512, -0.028694, 0.053582, 0.035787, 0.021823, -0, 0.041381, 5585e-6, -503e-6, -0.048592, 0.037066, -274e-5, -0.057734, 0.121486, -0.028017, 0.103727, 0.061347, -0.048192, -0.021864, -0.018441, 0.020915, 0.047846, 0.058657, -0.067863, 0.013908, 0.029106, -0.057112, 4513e-6, -0.071936, 0.03694, 0.082308, -9436e-6, 0.032789, -0.027868, 1351e-6, -0.047791, -0.028082, -0.073596, -0.043629, -0.022419, 14e-6, -4991e-6, -0.036232, -0.117445, -0.010449, 4814e-6, 0.034564, 0.0369, -2366e-6, 6246e-6, -0.048914, 0.096554, -0.054009, 0.073484, -0.040367, -0.057928, 0.095589, 0.015226, 0.08453, -0.035235, 0.031901, 0.111352, 0.022888, -0.036892, -0.024894, -0.041884, 0.027852, -6268e-6, -0.075086, -0.040175, 944e-6, 5784e-6, 0.011916, -0.083621, -0.056889, -0.022731, 0.045436, -0.014539, -0.071094, -0.042129, -9448e-6, 0.03504, -0.011962, -0.045491, -0.060882, -0.059731, -0.023203, 9748e-6, 0.018178, 0.020354, -0.038411, 0.034196, -0.057738, 0.034448, 0.021741, -0.033043, -0.020897, -0.054848, -0.118392, 0.062008, 0.013782, -0, -0.020452, 0.050955, -0.020394, 0.019721, 0.035629, -0.016147, 0.08265, 0.039328, 0.013875, -0.014241, 0.040913, -0.024964, -13e-5, -0.102029, 0.032598, -0.033295, -0.024405, -0.033448, -0.030801, -0.090298, 0.014356, -7541e-6, 0.047363, -0.010356, -0.062526, 0.029003, -0.05216, 0.155619, 0.06726, -0.043284, 0.058633, 0.04855, 9296e-6, -0.053043, -0.096841, 0.041234, 5147e-6, -0.035159, -0.040127, 0.042214, 0.053474, -0.045625, -5641e-6, 0.086543, 9094e-6, 0.012035, -5938e-6, -0.033053, 0.028193, -0.042943, -0.040737, -0.01772, 0.023937, 0.062618, -0.020055, 0.010857, 0.076788, -2927e-6, 0.024284, -0.052637, -0.017931, 0.017216, -0.034837, 0.086135] },
|
|
4793
|
+
{ name: "get_folder_structure", category: "diagnostics", tier: 3, descriptionHash: "6ca14f139c72b3cb", embedding: [0.0248, 0.014234, -0.103332, 0.026884, -7807e-6, -0.052216, -0.027197, 0.030491, 0.026501, -0.063623, 0.061979, -0.027075, 0.07861, -0.018764, 2108e-6, -2817e-6, -0.081834, 0.071194, 0.028315, -0.067863, 0.044106, -6708e-6, 0.038228, -3359e-6, -0.014617, 0.041795, -0.122082, -0.026866, 0.015843, -0.019856, 0.022151, 0.014335, 0.113568, 0.041659, 0.08228, 0.06035, 0.035127, -0.023513, -6944e-6, -0.015123, -0.057851, 0.027339, -0.040085, -0.019583, -0.015357, -0.033505, -0.117394, -2176e-6, -0.072284, 0.035402, 0.010559, -0.017429, -0.048079, 0.096546, -522e-6, 0.111931, -0.022232, 3595e-6, -0.085326, -0.03542, 0.062325, 0.018551, -0.035678, -0.053656, -1581e-6, 0.093605, 0.06909, 0.070724, 0.061733, -0.109827, 3503e-6, -0.035939, -0.023179, 0.03887, -9241e-6, 0.035164, -0.010526, 0.039764, -0.055793, -0.122633, 9506e-6, 0.062631, 2571e-6, 0.048224, -9617e-6, 0.028949, -0.046933, -0.027245, -0.031032, 0.034516, 0.048456, -0.082559, -0.051648, 2263e-6, -661e-6, 0.063173, -0.052154, -0.054747, 0.097021, -2811e-6, -0.023862, 0.013593, 0.067556, -0.017702, -8555e-6, 0.081827, 107e-6, 0.016251, -0.04528, -712e-5, -0.036687, 0.054588, 0.03361, -0.037132, 0.057233, -0.027401, -0.045239, 0.041292, 0.01905, 0.094565, 0.209794, -0.018521, 0.109254, -0.03181, -0.059773, -0.013052, -0.07347, -0, 0.03875, 0.03153, 0.017377, 0.046892, 0.011005, -0.028534, 0.027857, 0.030096, -33e-4, 0.032873, -5584e-6, 0.010487, -0.025499, -0.081998, 3106e-6, 0.019823, -1866e-6, 0.056224, 3424e-6, -6028e-6, 0.020866, 0.062555, 476e-6, -8428e-6, 0.15143, -0.014582, -0.035083, -0.01445, -0.085588, -7546e-6, 0.036072, -0.04383, 0.014135, -0.045748, 0.055932, 0.048508, 0.015666, -0.016521, -0.037493, -0.038759, 2532e-6, -0.04899, 0.032822, -0.022067, -0.036552, 5606e-6, -0.035054, -0.034905, 0.020645, 9443e-6, 0.030804, 3313e-6, -0.033627, 0.055892, -0.016364, -0.075411, 9044e-6, 0.012116, 7751e-6, 0.050963, 0.04113, -2467e-6, -0.022652, 61e-4, -0.076893, -0.052364, -0.119396, -0.045279, 0.073108, 0.066628, -0.044176, 0.083628, -0.016766, 0.040931, -0.072172, -0.058715, -0.058628, -9781e-6, -0.030474, -0.016666, -0.069022, -0.022489, 0.038746, 0.095908, -971e-6, 0.074705, 0.049826, -0.061925, -0.028191, -0.098969, -0.073523, -0.021083, 0.032688, -0.049404, 2585e-6, -0, 0.085737, 0.022924, 0.019749, -0.065029, -0.018306, 0.045815, -0.059303, -0.01421, -0.09564, 0.047106, -0.021757, 0.093082, 0.019121, -0.024488, 0.064309, 0.038915, -0.015569, -0.106408, 0.065989, 0.022456, -0.034562, -965e-5, -0.014821, 0.041639, -0.015759, 9122e-6, -0.042473, -0.080695, 0.114689, -0.015295, 0.010953, -0.021769, 0.0176, 0.037506, -0.029612, -0.078456, 3824e-6, -0.091779, -0.021244, 0.022857, 0.030792, 0.017955, -0.066972, -0.057737, -0.047096, 0.011307, 0.10119, 0.057859, -0.035445, -0.086995, 0.094918, -0.055928, -0.021801, 0.024665, 0.040036, 0.120526, -2309e-6, -0.039182, 6786e-6, -0.013859, -8916e-6, 0.04294, -0.082022, 9704e-6, -0.053985, -0.077108, -0.02162, -192e-6, -0.181957, 0.037753, -0.017375, -0.057826, 0.03747, 832e-5, 3596e-6, 3069e-6, -0.059615, -0.046239, -0.025276, -0.056992, -0.02924, -0.033615, -0.013461, 0.061893, -0.010196, -0.031637, 0.074081, -0.017235, -8799e-6, -0.041701, -0.042906, -0.022061, 9513e-6, 0.010635, 0.072469, -0, -0.075855, -0.037254, -0.015934, -0.04009, 0.051018, -0.020954, 0.038802, 0.139979, -0.017133, 0.056712, 0.044835, -0.055018, -0.099746, -0.070945, -0.042562, 0.03855, 142e-5, 0.066945, -0.042481, 0.011017, 0.014928, 0.036274, 0.036246, -0.043351, 9174e-6, 6056e-6, 0.031941, 0.080755, 0.028486, -0.026927, 0.028273, -4538e-6, 0.027468, -0.038358, -0.012319, 0.104216, 0.027442, -4954e-6, 0.02998, 0.087435, -0.02276, -0.045165, 199e-6, 0.078384, 0.0235, -0.02177, -0.058432, 0.060338, 0.024373, -0.093756, -0.067037, -0.046678, -0.024268, 0.025051, -0.077137, 0.035359, 0.029489, 0.012058, 0.103184, -202e-6, 0.051692, 0.01517, 0.029588, -0.012877] },
|
|
4794
|
+
{ name: "get_forward_links", category: "graph", tier: 2, descriptionHash: "d5f6a1b9e9d4f752", embedding: [-0.028244, -0.022238, -0.026783, 0.034626, 0.053942, 0.02481, -0.076346, -0.022124, -0.023804, -0.021967, 0.020062, -7155e-6, -71e-6, -0.017172, 0.06202, 0.091268, 0.015581, 0.049638, 0.0817, -0.06291, 0.036934, 0.02792, 0.022912, 0.01448, 0.033138, -0.018086, -0.085563, -0.011249, 0.034955, -563e-5, 0.012366, 0.018576, -0.130047, -5359e-6, 0.048665, 0.069351, 0.036171, -0.016489, 0.070395, 4528e-6, 0.067444, 0.052416, 0.016176, -0.049504, -6397e-6, -1461e-6, -0.085941, 0.040354, -0.067687, 0.010886, -0.024324, -0.087136, -0.090751, -9283e-6, 0.064805, 0.088962, 0.014762, -5582e-6, -0.031673, 0.044473, 0.095763, -0.081365, -0.057399, -0.075498, -0.08013, 0.035856, -5995e-6, 0.121333, -0.029044, -0.055087, -35e-4, -0.044016, 4884e-6, 0.014262, 0.054784, 5808e-6, -1957e-6, 0.021714, -0.144982, -0.189172, -0.03347, 842e-6, 0.055878, 0.049541, 0.062123, 0.010688, -0.01428, -0.032775, 0.025156, 0.058486, 0.031082, -0.064732, -0.032668, -4557e-6, 0.041799, 0.087633, -0.03563, -0.043751, 0.066601, 0.022833, 0.026572, 0.073149, 0.08416, 0.020004, 0.039391, 0.09745, -0.017376, 0.075315, -0.015597, -0.042898, -0.034148, 0.020827, 0.062425, -0.01715, 965e-5, -0.135746, -0.026318, -4445e-6, 0.082415, 0.03584, 0.06684, 0.035128, 0.040271, 0.018084, -0.097819, -0.077751, -0.05817, -0, 0.108023, 0.054853, 0.011707, -0.099858, 0.0169, 0.028728, -0.028922, -0.014895, 3502e-6, -0.031596, -0.05849, 8207e-6, 0.011627, 6862e-6, -0.049965, -0.038356, 0.035948, 0.059501, 0.032893, -0.045766, 1917e-6, 0.018478, -742e-6, -0.014605, 0.069524, 0.048643, -0.041322, -0.04824, -0.026245, 0.016224, -5944e-6, -0.012194, 0.017004, -0.039717, 0.015319, 0.069593, -0.089366, 4853e-6, -0.01764, -0.090634, 0.039387, -0.028894, -8779e-6, 9419e-6, -0.095826, -0.010771, -0.073768, 0.017564, 0.056711, -0.028945, -7617e-6, -0.014475, -0.045789, -685e-5, 0.012695, -0.116676, -0.022019, 0.066955, -0.012975, 0.012975, 0.086443, 1953e-6, -0.071978, 0.017862, -0.062155, 0.054468, -0.095419, -0.040671, 0.037388, 0.010315, -0.026075, 0.049077, 0.051503, 0.024841, -0.011035, -0.069361, -0.13043, -0.083481, 0.046398, -0.049625, -0.1087, -0.061151, -0.043259, 0.044098, 0.022851, 1142e-6, 0.016838, -0.192667, -5553e-6, -0.041307, -0.097345, -0.015752, -0.020575, 7052e-6, 6979e-6, -0, 0.090101, 0.124487, 0.069513, -0.016702, -0.030041, 0.039495, 0.053094, 0.016173, 0.025259, 0.139542, -5452e-6, 0.034285, 0.039169, -0.033584, 0.029164, -0.012967, 0.020586, -0.015528, 6578e-6, -0.04291, -0.046786, 0.017251, 5558e-6, 0.032227, 0.091041, 0.01627, 0.060279, -0.092525, 3376e-6, -0.08439, 0.034033, -0.012187, -0.043527, -0.066627, 0.011693, 0.081457, -0.033185, 0.034589, 0.017518, 3774e-6, 0.122132, 2008e-6, -5683e-6, 394e-5, -0.03267, 0.044173, -0.0319, 0.075419, -0.123346, -0.030662, 0.070232, -0.02712, 0.080839, -0.063452, -7447e-6, 0.051916, 9499e-6, 0.027808, -0.074665, -0.071285, -0.027769, -0.013164, -0.026157, 0.024688, -8093e-6, -0.042877, 1665e-6, -0.023373, -0.039365, 0.042977, 0.010268, 0.054365, -5346e-6, -0.097276, 0.070847, -3762e-6, -0.034238, -0.010918, -0.059335, -0.07623, 0.044219, -7459e-6, 0.070864, -0.016119, 0.025134, -0.046888, 1176e-6, 0.055491, -821e-6, 0.022385, 7376e-6, -0.035306, 0.054696, 0.036, 3867e-6, -0, -0.085566, -4195e-6, -0.034803, -0.02771, 3906e-6, 0.057477, 0.042944, 0.062076, -0.020861, 0.105611, 0.03199, -0.056114, -0.029904, -0.035784, -0.065834, 3246e-6, 0.042774, 9761e-6, -0.020992, -568e-5, -0.068184, 0.032529, -7945e-6, 0.023469, -0.010738, -0.032164, -0.057982, -6603e-6, 0.030503, -0.017639, 0.044504, 0.014901, -2276e-6, -0.030033, -0.026268, 0.077336, -0.020669, 0.033664, -1606e-6, 0.074954, 0.019691, 0.068124, -721e-5, 0.063938, 0.039906, -0.052699, -0.023482, 0.013864, 0.012679, -0.05054, -0.063502, -0.023385, -0.019517, -0.040477, -0.085762, 0.036215, -0.012797, 0.019392, -0.030228, 0.016296, 0.063412, 0.024252, 0.038236, 0.015056] },
|
|
4795
|
+
{ name: "get_link_path", category: "graph", tier: 2, descriptionHash: "7e55fa68b81165ff", embedding: [576e-6, 0.020896, -0.033045, 0.019248, -9376e-6, 0.054716, -0.071959, 0.027067, -0.044001, -0.026719, 0.015936, -0.039148, 0.075903, -0.010406, -2856e-6, 0.092998, 0.024505, 0.042326, -424e-5, -0.051801, 0.023713, -0.041656, -8851e-6, 284e-5, 0.072655, -0.028747, -0.028111, 0.051619, 0.058155, -0.02476, 0.036321, -909e-6, -0.064655, 2567e-6, -2247e-6, -0.017477, -3693e-6, -0.028833, 0.025275, -0.026069, 0.052009, 0.05636, 0.029453, -0.051421, -0.035012, -1073e-6, -0.131971, 0.05972, -0.077291, -0.017668, -0.051869, -0.04574, -0.050132, 2424e-6, 0.043913, 0.104853, 0.018613, 0.054222, -0.035458, 2075e-6, 0.085169, -0.132327, -0.028588, -0.086729, -0.043253, 0.034542, 0.031886, 0.068902, -0.053317, 0.042635, 0.047949, -9917e-6, -0.025719, 0.041727, 0.037622, -0.014348, -0.02348, -4474e-6, -0.103804, -0.128603, -0.071271, 928e-5, -0.017533, 0.046308, -2416e-6, -0.03368, -0.023917, -0.05155, -0.037727, 0.022741, 0.07119, 0.03447, -0.012784, -0.016502, 0.016639, 0.040041, -0.013303, -0.033842, 0.057489, 0.048991, 0.025135, 0.052351, -0.018755, 3727e-6, 0.059576, 0.090276, -0.024244, 0.049651, -0.010095, -0.045429, 0.041425, 0.013857, 0.051912, 4367e-6, -0.059735, -0.010888, 0.088255, 0.024531, 0.046708, 0.087129, 0.042279, 0.03162, -0.029734, 1467e-6, -0.029148, -0.050599, -0.021265, 0, 0.026669, 0.011117, 2819e-6, -0.110591, 0.027282, -0.021521, -0.122558, 9665e-6, -0.027989, -0.09258, -0.07016, -1817e-6, 5812e-6, -0.078259, 532e-5, -0.100406, 0.051311, 0.033971, 8832e-6, -0.071461, -0.014341, -0.04652, 0.043276, -0.05147, 0.017828, -0.020529, 0.019896, -0.09162, 0.02398, -2546e-6, -0.071991, 0.019425, 0.02233, -0.010517, -0.049389, 0.034982, 1471e-6, 0.014171, -0.030985, -0.083803, -0.013842, -5317e-6, 0.053079, -0.032209, -0.034342, 0.038503, -0.027907, 0.020251, 0.033737, 5245e-6, 0.06244, -0.034566, 0.012521, 0.084215, 0.010707, -0.083568, 0.019992, -0.012434, 5124e-6, 0.07255, 0.05218, -0.017906, 2767e-6, 0.065492, 5406e-6, 0.041787, -0.083431, -0.05052, 0.021758, 0.011831, -7243e-6, 0.015613, 0.081144, 0.023916, -0.019918, -0.051277, -0.110266, -0.110369, 0.040937, -0.048984, -0.130286, -0.018125, 4174e-6, -0.014641, -0.048954, -0.033274, 0.014485, -0.097224, -4799e-6, -0.026193, -0.10615, 0.055769, 0.019744, -176e-6, 0.077646, -0, 0.038888, 0.118681, 0.121522, 0.031762, 0.076503, 0.062795, 0.06045, -0.06866, 343e-6, 0.136001, -0.012998, -0.03029, -0.040644, -0.074912, 0.095644, -0.022086, 0.028791, -5864e-6, 0.021412, 8251e-6, 0.010941, -0.011877, -0.039438, 0.042549, 0.080556, 0.022664, 0.032606, -0.065773, -6855e-6, -3408e-6, -0.044039, -0.021369, -0.04407, -0.065913, 0.012442, 0.08963, -4843e-6, 0.01525, -0.022186, 0.011519, 0.033148, 0.010232, -0.040481, -0.023485, -0.015874, 0.024715, -0.042427, 0.037221, -0.107549, -0.070541, 0.068917, 0.010915, 7285e-6, -6897e-6, -0.060041, 0.031132, -0.056905, 0.073498, -0.035495, -0.025116, -1033e-6, -0.020714, -0.051245, 0.087727, 0.045302, -4864e-6, 0.053723, 554e-6, -0.070919, 0.082624, -0.044166, 0.159576, 0.107645, -0.033764, 0.060356, 0.013776, -0.025078, 0.035815, -0.025548, -0.063214, 0.019877, 0.047643, 0.096886, -4359e-6, -0.045147, 0.021702, 1663e-6, 0.028667, 0.017825, 0.086978, -0.059317, -0.031567, 0.06782, -0.015827, -0.036403, -0, -0.072709, -0.08964, -0.079496, 0.033834, -5134e-6, 0.01685, 0.045626, 0.092647, -5661e-6, 0.112961, 0.023919, -0.039028, -0.052947, 0.046623, -0.071386, -0.028258, 0.052623, -0.012526, -0.014361, -0.035428, -0.03462, 0.0387, -0.022518, 0.086197, -0.018545, -0.073169, -0.026974, 0.071077, 0.089353, 8905e-6, 0.012713, -0.030151, -0.053935, 6702e-6, -8285e-6, 0.034274, -0.042759, 0.077429, -0.031686, 0.143826, -0.045542, 0.086815, -0.044294, 0.019443, 0.111399, -0.074757, -0.024954, 0.012391, 0.035225, -0.012255, -0.050714, -0.044447, -9013e-6, -0.104895, -0.067922, 9485e-6, 0.010476, 0.037276, -0.048327, -0.015944, 0.042034, -0.016911, 0.041661, -0.012371] },
|
|
4796
|
+
{ name: "get_note_structure", category: "read", tier: 1, descriptionHash: "13e025dd506ad53b", embedding: [-0.013936, 0.092543, -0.01774, 0.04882, 0.017489, 0.033502, -0.031085, 0.057531, -0.032952, -0.049158, -0.014399, 0.010856, 0.032614, -0.03693, 0.074654, 5102e-6, 1155e-6, 0.063368, 0.026288, -0.030968, 0.042517, 0.061801, 0.043296, 0.024852, -0.026108, 0.074168, -0.112734, -0.013115, 6826e-6, 4972e-6, 0.040046, -3198e-6, 0.081805, 0.047918, 0.0311, 0.086131, 0.026157, -0.048194, 0.064023, -0.019332, -0.014324, 0.046376, -0.039748, 7213e-6, 0.041687, -0.023672, -0.04897, 4408e-6, 0.023268, 5979e-6, -0.058913, -0.021004, -0.080396, 0.040738, 0.042624, 0.09615, 0.017093, -0.052704, -0.059256, -0.064939, 4712e-6, -0.031367, -0.022331, -0.055711, -0.030892, 0.055924, 3701e-6, 5202e-6, 5575e-6, -0.057736, 0.051093, 0.023599, 0.067769, 0.04734, 3026e-6, 263e-6, -0.013159, -7091e-6, -0.065838, -0.097331, -0.097612, 1111e-6, 0.021326, 0.070886, 4111e-6, -0.044972, 0.029136, -0.060153, -0.035747, 0.019768, 0.05854, -0.122031, -0.068872, -1816e-6, -0.032224, 0.076973, 0.011439, -0.068247, 0.079093, 0.029818, 0.035732, 0.05205, 0.082003, -8351e-6, -0.047518, 0.044475, -0.022774, 0.023548, -0.054341, -0.087001, 8565e-6, 0.024003, 0.021296, 43e-6, 0.029256, -0.104884, 0.049995, -0.045193, 0.057058, 0.09845, 0.130015, 7813e-6, -0.039964, 0.019868, -0.08187, 329e-5, -0.023716, 0, 0.049102, 1621e-6, 4499e-6, -2352e-6, -0.03608, 0.046759, 0.015342, 0.041688, -0.067338, -2171e-6, 0.030282, -0.051712, -0.03101, 0.041594, -0.054493, -94e-6, -0.012967, 7e-3, 7693e-6, 0.030683, -0.013287, -0.038496, -0.021341, -0.019189, 0.043356, 0.034681, -0.052546, -0.039069, -0.117918, -0.017837, -6902e-6, -0.0562, 0.014207, -0.07303, 0.013929, 0.054845, -0.021442, 0.026728, -0.039785, -0.105725, 0.031091, -291e-5, 0.047514, -0.047331, -0.075329, 0.031091, -0.122455, 0.025712, 0.021712, -0.029667, 0.042369, 0.012674, -0.03435, 5675e-6, -4883e-6, -0.017274, 0.015982, 0.054966, 0.018758, 0.011861, 0.061738, -3278e-6, 0.013902, 0.072172, -0.044806, 0.03415, 5906e-6, -0.038799, 0.026522, 1621e-6, -0.049001, 0.028345, 1316e-6, 0.029207, -0.012222, -0.082558, -0.042353, -0.104122, 0.054989, -962e-5, -0.043262, -7002e-6, 0.071694, 0.027814, -0.017243, 0.01764, 0.063809, -0.172104, -0.013022, -0.079119, -0.095823, -0.059441, -0.020946, -0.092329, -0.016178, -0, 0.08574, -0.018612, -8126e-6, -0.065911, -0.037051, 0.040584, 4727e-6, 0.046324, 0.028766, 0.113405, 0.054729, -4246e-6, -0.01985, -0.036535, 2026e-6, 0.055414, -0.010437, -0.019141, 0.087226, 0.030815, -0.112883, -0.04261, -0.0136, 0.085649, 0.03861, 3127e-6, -0.045023, -0.047673, 0.016812, -0.082627, -0.013244, -0.017637, -0.040058, -4445e-6, -0.078244, -0.023515, -7669e-6, -0.022829, -0.029229, 0.11091, 0.130097, 0.103151, -0.019624, -0.01178, -0.025917, 8352e-6, -5348e-6, 0.090101, -0.050427, 1161e-6, 0.01801, -0.058674, -4979e-6, 9282e-6, -0.034349, 0.041651, 0.033891, 5588e-6, -0.087771, -0.064779, -0.053977, 0.051264, -0.093236, 0.055405, 0.053018, -0.078905, 0.020024, -0.066308, -0.052631, -7841e-6, -0.040381, 0.016011, 0.069619, -0.017254, 0.079545, 0.095548, -0.089332, 0.01528, -0.036002, -0.024638, 0.036874, -0.025238, 398e-6, 0.05631, 0.02039, -9111e-6, -0.02828, 0.049833, -0.030648, -6396e-6, -0.024336, -0.039117, 0.076691, 0.032502, 2959e-6, -0, -0.097178, -0.076123, -0.050817, -0.063703, -0.025175, 0.049983, 0.028116, 63e-6, -0.037672, -0.023523, 0.017584, -0.049795, -0.099647, -0.083893, -0.084152, 0.019284, 0.06566, 0.036948, -0.026239, -9385e-6, -0.010138, 0.060247, -0.021998, 6256e-6, 0.079166, 0.044819, -0.036784, 0.08607, 0.013775, 0.015714, 0.101031, 9825e-6, 0.016087, -0.0192, 0.090467, 0.043642, 0.080483, 7413e-6, 0.018601, 0.126401, 0.046186, 0.03019, -0.097741, 0.019783, 0.064507, -0.072475, -0.03312, 6855e-6, 0.05357, -0.06165, -0.019793, -0.03496, -0.029066, -2388e-6, -0.131008, -3733e-6, 0.082281, 0.083596, -0.011866, -0.080496, 0.068331, 0.027994, 0.070736, 0.06802] },
|
|
4797
|
+
{ name: "get_section_content", category: "read", tier: 1, descriptionHash: "0886b3e4ba0143e0", embedding: [-8237e-6, 0.064483, -0.022816, 0.058059, 0.043745, 0.024314, -1969e-6, 0.030875, -0.031076, -6673e-6, -7453e-6, -0.034367, 0.061573, -0.036198, 0.078728, -0.052949, 0.034765, 0.069928, 0.026994, -0.055183, 0.041952, 0.101243, -0.016791, 0.028424, -0.049228, 0.045486, -0.129149, 0.035724, -0.01831, -0.050056, 0.067444, 6804e-6, 0.014929, 0.031089, 0.03287, 0.033465, 0.040564, -0.043023, 0.099563, -538e-5, 0.012786, 0.027534, -0.066813, 1521e-6, 0.019306, -0.032863, -0.049928, -0.010568, 263e-5, 0.018291, -0.033267, -0.058828, -0.03166, 0.084656, 4139e-6, 0.124387, 0.041998, -8803e-6, -0.046815, -5564e-6, -0.034553, -0.083851, 0.023635, -0.056967, -0.08384, 0.037255, -0.035472, 0.047636, -0.042109, -0.034148, 0.048975, -0.011811, 0.05494, -1347e-6, 0.023978, -0.051689, -0.049375, -0.063953, -0.06785, -0.081569, -0.070165, 0.090638, 7037e-6, 0.018011, -1273e-6, -134e-6, -9648e-6, 6133e-6, -0.059127, 0.029461, -7614e-6, -0.058859, 0.034264, 0.037159, -0.045938, 0.074998, -0.028879, -0.104076, 0.072963, 0.018888, -0.036926, 0.05768, 0.010162, 0.023282, -0.038545, -753e-6, -0.03395, 0.048027, -0.058558, -0.017207, -7953e-6, 0.089229, 0.025373, -0.02693, -0.011627, -0.061822, 0.099465, -418e-6, 9603e-6, 0.066219, 0.130409, -0.012987, -0.033229, 0.070731, -0.054228, -0.057232, 0.019033, -0, 0.019279, -8867e-6, 0.016433, 0.036377, -0.063815, 0.033838, 0.032657, -6878e-6, -7942e-6, -0.027204, -3624e-6, -0.023715, -0.049352, 7286e-6, -0.064141, -0.03988, -0.053729, 0.048636, -6211e-6, -0.030541, -0.043945, -0.039733, -0.016617, -0.054669, 0.041894, 8208e-6, -0.054654, -0.058027, -0.105245, 3972e-6, 0.028714, -0.02091, 0.011607, -0.128527, 1428e-6, 4238e-6, 2852e-6, 0.032962, -0.04359, -0.025534, -0.026722, -0.016459, 0.075057, -0.030709, -0.07681, 0.064528, -0.089888, 0.027111, -426e-6, -0.066683, 0.117379, 0.015108, 6213e-6, -0.062169, 0.033185, -0.054304, -0.012517, 0.045751, -0.015382, 0.015151, 0.142091, 0.013816, -0.046187, 0.035068, -0.046627, 0.017801, 0.012603, -0.061175, -0.012006, -0.016005, -0.050268, 0.010129, 949e-6, -488e-6, -0.025028, -0.027815, -0.091865, -0.038169, 0.095126, -0.010019, 0.01955, 5163e-6, 0.038487, -3331e-6, 8995e-6, 0.031709, 0.060922, -0.080931, -0.028161, -0.088109, -0.130074, -0.067012, 0.032859, -0.085392, 0.054948, 0, 0.09361, -0.035286, 983e-6, -0.065903, -3853e-6, 0.036656, 7882e-6, 0.03603, -0.023402, 0.099379, 1212e-6, 2846e-6, -0.052266, 0.030807, 0.034711, -1111e-6, -0.084518, -0.010853, 0.032495, 0.070725, -0.06891, -0.079353, -3552e-6, 0.038481, 0.053736, -2519e-6, -9159e-6, 4969e-6, 0.033201, -0.087642, -8816e-6, -0.021087, -297e-6, -0.051643, -0.036847, -0.013937, -0.061047, -0.056092, -0.029116, 0.087525, 0.099571, 0.058637, 0.025492, -0.054117, -0.065355, 0.01221, 0.054318, 0.087002, -0.049836, 0.036547, -0.047741, -0.033752, 961e-5, 0.03346, 0.049078, 0.10198, -0.033428, 0.058072, -0.066352, -0.107892, 0.03356, 0.082187, -0.099242, 0.038397, 0.031202, -0.029609, 0.040426, -0.108821, -0.056866, 0.01493, -0.016265, -0.023999, 0.050475, -0.08575, 0.061403, 0.072612, -0.05943, 0.028746, -0.067163, -1554e-6, -0.010963, -0.012683, -0.031536, 0.052222, 0.094687, -2459e-6, -3033e-6, -0.0463, 0.026225, -0.052761, -0.043701, -0.055518, 0.083042, -991e-6, -0.050119, -0, -0.025592, -0.102662, -0.016183, -0.031183, 2975e-6, 0.06731, -0.045798, -0.035675, -0.037068, 0.027652, 0.020454, -0.036753, -0.041182, -0.095227, -0.032816, 0.016394, 0.045146, 0.03698, 0.012095, -0.054207, -0.035954, 0.094166, 0.014208, -0.038471, 0.038121, 0.033013, -0.027251, 0.01451, 0.120273, -0.019107, 0.10812, -0.021834, -0.022466, 7704e-6, 0.075306, 0.050701, 0.052988, 0.023159, 0.036116, 0.094514, 0.09845, 5031e-6, -513e-5, 0.073681, 0.063617, 7887e-6, -0.01049, 0.019427, 0.096915, -0.021423, -0.071927, -0.034306, -0.027533, 918e-5, -0.140808, 0.03936, 0.085358, 0.023395, -0.04373, -6317e-6, 0.042309, 0.057039, 0.061, 0.051999] },
|
|
4798
|
+
{ name: "get_strong_connections", category: "graph", tier: 2, descriptionHash: "67403d05e418d711", embedding: [-0.066588, -0.031623, -0.040548, 0.05845, -0.083961, -0.041132, -0.019731, -0.013121, -0.058207, -0.043145, -0.014589, 8716e-6, 0.017195, -0.011934, 0.050697, 0.114236, 0.067613, 0.022044, 1768e-6, -0.042179, 0.036328, -0.063279, -0.044397, -0.048918, 0.063917, -0.032793, -0.096864, 0.036037, 0.072548, -0.059768, 0.027538, 0.018819, -0.153805, -2865e-6, -0.03873, -5112e-6, 0.047849, -0.044784, 0.015775, 0.015581, 0.058795, 157e-6, 5518e-6, -0.046297, -0.019774, -3185e-6, -0.109707, 0.106234, -0.042935, -0.020828, -0.020876, -473e-6, -0.03085, 0.075292, 0.074364, 0.031586, -2674e-6, 1597e-6, -0.065426, 0.066464, 0.045733, -0.051476, -0.077887, -0.01439, -0.059769, 0.039251, -417e-5, 0.142718, -0.027071, -0.018331, 0.049568, -0.091532, -0.06384, -0.015873, 0.079631, 0.024949, 825e-5, -0.031579, -0.068259, -0.067124, -0.029743, 478e-5, -0.059082, 0.024304, 0.053313, 827e-6, -0.014918, -0.063738, -0.025801, 0.057244, -0.025136, 0.081416, -0.065117, 0.026852, 0.047051, 0.089523, -0.048763, -0.088147, -9767e-6, 0.070559, -8051e-6, 0.027255, 0.023562, -0.04044, 0.042179, 0.040146, -0.032813, 0.063052, 0.025597, -0.020206, -0.040349, 0.038112, 0.085331, 8591e-6, -0.030928, -0.031156, 4718e-6, 0.045487, 0.095488, 0.056743, 0.041122, 0.034928, -0.025692, -0.046022, -0.036408, -0.034319, -3225e-6, 0, 0.081451, -0.010589, 0.045075, -0.051014, -8662e-6, 0.067419, -0.0481, -3218e-6, -0.048372, -0.015041, -0.136185, 0.04344, -64e-4, 0.04276, -7602e-6, -0.050046, 0.031396, 0.031251, 0.081635, 254e-6, -0.01189, -9608e-6, -2499e-6, -0.020941, 0.100697, -0.032649, -6396e-6, -0.025132, -0.038456, 0.030839, 3295e-6, -0.044603, 0.034166, -0.029135, -0.028583, 0.019555, -0.052395, -5559e-6, -0.023131, -0.072217, -0.010815, -0.033142, -0.026837, -689e-6, -0.090396, 0.025028, -0.109906, -1869e-6, -8167e-6, -7767e-6, 0.011186, -0.040711, 1353e-6, 0.067267, 0.015928, -0.060545, -4709e-6, 0.153015, -6319e-6, 0.058627, 5016e-6, -0.011109, -0.066424, -9946e-6, 6362e-6, 0.047208, -0.064859, -0.052458, 8499e-6, -0.037811, -0.053786, 0.072171, 5982e-6, -0.01187, -0.057503, -0.060197, -0.072429, -0.04221, 0.10348, 0.060009, -0.078618, -0.028118, 0.039301, 0.062665, -0.027577, 0.061744, 0.028989, -0.151255, -0.017672, 0.023536, -0.105579, -0.012281, 0.038194, -0.04123, 0.054832, -0, -0.022955, 0.089969, 0.051345, 0.021545, 0.021812, 0.016275, 0.043906, -325e-6, -6728e-6, 0.142068, 0.095044, 0.052587, 0.039407, -0.046951, 0.097477, -0.059961, -0.011707, -0.015315, 0.015018, 0.06858, -0.011264, 0.051729, 277e-5, 2034e-6, 0.071558, -0.02237, -4498e-6, -0.073721, -0.018071, -0.011383, 0.049755, -5924e-6, -0.054546, 0.010417, -0.016748, 0.094873, 0.02656, 8593e-6, 0.022819, 0.027108, 0.055151, 0.025936, -0.038561, -0.010829, -4814e-6, -79e-5, -0.092417, 724e-6, -0.14534, -0.032151, 1396e-6, 0.040104, 0.025389, 0.075193, -0.020358, -0.021474, 0.072587, 0.040981, -0.055784, -0.01562, 0.014189, -0.082254, -0.056993, 0.034232, 0.038089, -0.024235, 0.032245, -0.093361, -0.016319, 0.046342, 3841e-6, 0.06287, 0.075715, -0.02166, 0.077825, 8028e-6, -0.095752, -5027e-6, -0.063132, 0.02156, -0.076472, 0.04896, 0.084774, -0.024035, 0.054888, -0.024804, 0.011049, 0.040054, 0.063838, 0.014874, -0.053498, -0.040073, -0.035694, -0.014905, -0.011957, -0, -0.072981, -0.05665, 6433e-6, 947e-5, 54e-4, 0.07019, -0.011282, 0.024312, -0.014619, 0.069991, 1096e-6, -0.024405, -0.051208, -0.041941, 0.021573, 0.0104, 0.054657, -9388e-6, -0.041487, -0.093341, -0.049771, 0.024127, 0.046291, 0.106508, -1368e-6, -0.05374, 1336e-6, 0.03021, -0.013554, 0.037984, 8682e-6, -0.044746, -5847e-6, -0.030043, -0.017177, 0.140911, -0.094224, 0.04832, -0.031835, 0.095834, 0.034404, 0.044732, 4775e-6, 0.063425, 0.1425, 0.054597, 25e-4, 0.058578, 0.042653, -0.054764, -0.020998, -0.051378, -0.021626, -0.084222, -0.089612, -5852e-6, -0.025509, 0.018637, -0.010148, 9401e-6, 0.016729, 0.023269, -4606e-6, 0.013767] },
|
|
4799
|
+
{ name: "get_unlinked_mentions", category: "diagnostics", tier: 3, descriptionHash: "82abcb92f07a2d2d", embedding: [-0.02671, -0.011479, 6229e-6, 0.040464, 0.066444, 0.018177, 0.024748, 3288e-6, 0.03436, -0.055362, 0.051793, -0.0676, 0.0619, -0.030866, -0.011047, 0.06331, 0.02725, 0.056467, 0.040353, -0.037553, 0.060213, 0.0741, 0.018252, 2515e-6, 0.044605, -0.077299, -0.07142, 0.023546, -0.02379, -0.041655, -0.036179, 0.149398, -0.115548, 6599e-6, 0.072299, 881e-5, -6759e-6, 0.023088, 0.075067, -0.031966, -1492e-6, 0.017106, 0.012044, -0.035906, 3329e-6, -6992e-6, -0.043122, -5376e-6, -0.06693, 3274e-6, -0.089982, -0.02163, 4909e-6, 0.044243, 0.069855, 0.083963, -0.021052, 3114e-6, -0.0984, 0.020037, 8852e-6, -0.016704, -7386e-6, -0.097043, -0.07996, -1796e-6, 0.033795, 0.104308, -0.025395, -0.024294, 0.045773, -0.021567, -0.018495, 0.021321, -9688e-6, 0.078491, 6967e-6, 0.025245, -0.088431, -0.07658, -0.077745, 0.057911, 0.013831, 0.014721, 0.011057, 0.050473, 0.039154, -0.054963, -0.027728, 0.052258, -3239e-6, -0.073398, 0.04704, -0.061094, 0.037797, 0.037322, -7954e-6, -0.049103, 0.077252, 0.042505, -0.01148, 0.112032, 6656e-6, 0.030763, -0.041408, 0.073403, 1077e-6, 0.07894, -7489e-6, -0.064421, -0.016463, 0.031751, 8984e-6, -0.071222, 0.01003, -0.07616, 0.094239, -0.025177, 0.08934, -0.010869, 0.015545, 0.021575, -9801e-6, 0.038571, -0.13617, 0.033291, -0.033681, 0, 0.138492, 0.048943, -1147e-6, -0.078094, -0.02313, 0.021352, -0.086509, 0.017068, -862e-6, -0.041238, -0.029915, -9743e-6, 0.032424, -0.063525, -0.046586, -0.040256, 0.069244, 0.093992, -8541e-6, -7509e-6, 1743e-6, 0.021258, 9403e-6, 0.014192, 0.051234, 0.04411, -0.020993, -0.106183, 0.028371, 3e-5, -0.02897, 0.025133, 0.028278, 4918e-6, 0.06366, 0.039582, -0.05967, -0.066988, -0.08635, -0.048437, 5063e-6, -8014e-6, 0.029354, -0.096191, -0.023477, 0.020663, -0.055187, -0.055928, 0.025371, -0.021473, 0.068764, 0.035692, -8622e-6, 0.033706, 0.030075, -9239e-6, -0.048782, 0.015848, 0.011938, 0.047188, 0.029908, -0.062364, -0.060866, -0.053274, -0.029964, 0.025332, -0.033235, -0.034175, 0.022063, -0.04731, 0.028339, 0.022797, 0.085156, 0.055072, -0.021529, -0.039302, -0.148962, -0.050619, 0.045003, 0.049702, 9935e-6, -0.100477, -0.019823, 0.01064, 0.021827, -0.016774, 6265e-6, -0.140322, -0.089894, -9966e-6, -0.035737, 0.053658, -0.067127, 0.067379, 5272e-6, -0, 0.089059, -2928e-6, 0.098185, -0.118742, -0.039035, 0.030799, 0.060691, -8413e-6, 0.013736, 0.022551, -4777e-6, -0.03109, -2752e-6, -0.035725, 0.014007, 0.053183, 0.014782, -9737e-6, -0.01855, 0.118612, 0.046415, -0.041961, -9625e-6, 0.045603, 0.065236, -0.010271, 0.043213, -0.056406, -0.06718, -0.093052, 0.059104, 0.069808, -0.097997, -0.096339, -0.042928, -8986e-6, -0.036827, -0.034085, -0.032847, -0.010255, 0.106691, 0.037399, 0.014854, -0.018562, -0.041727, 0.027903, -0.127858, 0.043868, 0.023231, 879e-5, 4885e-6, -0.07847, 6782e-6, -0.052781, 5498e-6, 0.028081, 6385e-6, -4693e-6, 8438e-6, -0.052015, 0.016117, 0.052404, -0.083088, 0.086101, 0.013842, -0.062632, -4547e-6, 0.015812, -0.015574, -0.036412, 0.023727, -0.013519, -0.018251, -0.105595, 3857e-6, 0.058814, -0.04311, -0.067633, -0.035131, -0.084171, 0.061794, 0.023514, 0.023069, 0.034977, 812e-5, -0.029106, 0.024333, 0.065016, -6202e-6, -0.02619, -0.014778, -0.089226, -0.032969, 0.05292, -0.041454, -0, 542e-6, -1883e-6, -0.022644, -0.029445, 0.017052, 4269e-6, 0.016247, 0.1074, -8995e-6, 0.058457, -0.04047, -0.087128, -0.121254, -0.061749, 0.056881, -0.064746, 0.036199, 3344e-6, -0.016064, -0.044903, -0.065038, 0.057656, -0.016962, 0.033448, -0.022278, -0.038177, -0.025535, 0.03171, 0.077165, -0.023984, 0.039535, 0.060943, 4308e-6, -5683e-6, 0.039505, 0.115149, 0.032344, -0.025515, -0.050012, 0.049676, 0.062927, 0.031885, -0.028552, 0.038174, 0.113796, 0.019518, 0.025577, -0.071691, 9971e-6, -0.070446, -0.036079, -0.022483, 0.013702, -0.015765, -0.085072, 0.052147, 0.075996, 0.020855, -832e-6, -0.037161, 0.086977, -0.020388, -0.013471, 0.082692] },
|
|
4800
|
+
{ name: "get_vault_stats", category: "diagnostics", tier: 2, descriptionHash: "142afded7f43b3eb", embedding: [0.052263, -0.023593, -0.101933, 0.013327, -372e-6, -0.068982, -0.030128, 0.071345, -0.010409, -0.021389, 0.024829, -0.048969, 0.068093, -0.027445, -0.013731, -0.016057, -0.010796, 0.058009, 0.017498, -0.083032, -4425e-6, -0.030776, 0.044002, -0.013652, 373e-5, -0.016519, -0.110825, -155e-5, -0.019638, -0.048874, -0.019509, 6518e-6, 0.025615, 0.040367, 0.04427, -0.012276, 0.070057, 0.013562, -5661e-6, -0.041723, -0.032607, -0.034744, -0.058482, 0.04057, 0.019023, -0.029735, -0.115275, -4202e-6, -0.095239, 0.075255, -448e-5, 184e-5, 6874e-6, 0.085743, 0.013777, 0.042941, -0.038782, -0.029128, -0.078216, -0.013474, 0.039888, 7119e-6, -0.075234, 0.013739, -7157e-6, 0.075382, 0.077925, 0.084385, 0.082926, -0.09381, -0.065932, -0.047229, -0.047968, -0.010742, -2231e-6, 0.0118, -0.034774, 0.025496, -0.031764, -0.10226, 0.016692, 0.01618, -0.018984, 0.023593, -5987e-6, 0.041504, -0.017484, 109e-6, -9602e-6, -5197e-6, 0.040996, 7866e-6, 4956e-6, -0.012359, -0.036138, 0.040988, -0.056435, -0.103273, 0.040424, 0.039568, -0.05421, 8815e-6, 0.053273, -0.055235, 4501e-6, 0.057941, 0.028942, 0.057562, 0.013682, 0.033504, -1342e-6, 0.061161, -3934e-6, -0.04759, 0.124597, 8139e-6, -0.071407, 0.047409, 6698e-6, 0.070202, 0.159901, 0.010404, 0.108316, -0.076477, -0.0334, -0.014271, -0.068778, -0, 0.064615, 0.024109, 0.013401, 0.066441, -3237e-6, -6402e-6, 0.014829, -3163e-6, 0.010742, 0.023401, 0.010618, 0.09072, -0.061162, -0.02922, 0.058626, 0.062082, 0.011229, 0.084968, 0.03421, -3798e-6, 0.053153, 0.029474, 0.029179, 0.036683, 0.200518, -0.026556, -0.053287, -0.027985, -0.042341, 0.024122, 0.031836, -0.01833, -7344e-6, -0.074043, 0.068788, -0.017818, 0.011528, -0.016894, -0.019766, -0.057214, -0.028584, -0.045624, 0.010628, -0.050315, -0.051021, -0.054475, -8464e-6, -0.059093, 0.062904, -6753e-6, -0.019734, -8833e-6, -0.065207, 0.02315, -0.030228, -0.04939, -0.012087, -0.025586, 9878e-6, 0.081639, -0.016089, -0.028084, -0.013005, -0.070265, -0.07584, -0.040276, -0.059841, -0.030589, 0.0152, 0.12413, -0.016491, 0.057205, -0.015502, 0.024296, -0.035531, -0.045239, -0.020637, -0.019508, -0.020392, 0.012706, -0.062219, -0.056537, -8389e-6, 0.069076, 0.013153, 0.065639, 0.048058, -0.058838, -0.042923, -0.055595, -0.044738, -0.024114, 4674e-6, -0.072422, -0.013729, -0, 973e-5, 0.017447, 0.030576, 0.040436, 175e-5, 0.024755, -0.061168, -4869e-6, -0.055326, 0.044569, -0.032414, 0.092706, 4064e-6, -0.018042, 0.062197, 0.025095, -0.015888, -0.084278, 0.024731, 0.06155, -0.01739, -893e-6, -0.022489, 0.039758, 4815e-6, 0.022153, -0.026834, -0.035489, 0.08855, -0.067535, 0.026246, -5265e-6, -0.020727, 0.035584, -0.043076, -0.103258, 0.064684, -0.061252, -0.057973, 0.010716, 0.050594, 6609e-6, -0.056492, -0.075295, -0.058753, 0.017222, 0.041357, 0.045892, -0.014773, -0.103007, 0.099353, -0.011345, -2524e-6, 0.043921, 0.016206, 0.068613, -0.050169, 0.014199, -0.019859, 3313e-6, 0.030961, 0.061142, -0.070413, 0.036668, -0.028002, -0.089982, -7082e-6, 0.023894, -0.223877, 0.052236, 0.037617, -0.062091, 0.045658, -0.018213, -0.020663, 58e-4, -0.028437, -0.065735, -5495e-6, -0.031058, -0.019267, -0.010103, -2792e-6, 0.012061, 0.014261, -2317e-6, 0.072181, -8323e-6, 0.020135, -0.055961, -0.076066, -0.025508, -0.075476, 0.016939, 0.079201, -0, -0.011394, 0.015151, 8453e-6, -0.016995, 0.032527, 0.048237, 3612e-6, 0.152658, -3909e-6, 0.034673, 0.031367, -0.048023, -0.106784, -0.068869, -0.019488, 0.030225, -0.072224, 0.056444, -0.028251, -0.038078, -0.036382, 0.041514, 0.027815, -0.082509, -0.02318, 0.01783, 0.014898, 0.07848, 0.057559, -8525e-6, 0.042957, -0.049829, 0.04998, -0.107221, 0.015602, 0.108087, -275e-5, -0.039533, 0.030336, 0.093879, -3032e-6, -0.040499, 0.064012, 0.102958, 0.011725, -0.018834, -0.043075, 0.061862, 0.037082, -0.101994, 6522e-6, -0.105866, 2286e-6, 0.042664, -0.022911, 0.085883, 0.032138, -4063e-6, 0.123744, 0.010724, 0.122063, -0.027455, -0.011767, 0.014347] },
|
|
4801
|
+
{ name: "get_weighted_links", category: "graph", tier: 2, descriptionHash: "e3e69dc8d2a5ba21", embedding: [-0.084822, 1045e-6, -0.027126, 0.081197, 0.012096, -0.050274, 3126e-6, 0.01404, 314e-6, -0.01669, 218e-6, -0.016863, 0.031709, -0.018171, -655e-6, 0.100242, 0.081805, 0.06466, -0.032912, -0.074248, 0.026316, -0.054644, -0.06746, -0.011898, 0.075021, -0.077123, -0.119958, 0.037754, 0.105254, -0.064129, 0.018044, 0.01355, -0.06947, 727e-6, -0.085426, 0.014009, 0.035764, -0.056692, 0.0421, -0.022063, 8284e-6, 0.048045, 969e-6, -0.037284, -0.021534, 1094e-6, -0.070746, 0.054778, -0.138747, 0.051362, -0.019336, -0.023486, -0.032332, 0.066142, 0.04047, 0.042174, 0.027665, -0.028046, -0.07962, 0.043375, 0.051494, -0.069121, -0.070034, -1452e-6, -6267e-6, 0.051287, 0.031624, 0.071755, 0.023659, -0.057205, 0.029994, -0.083993, -0.086095, 0.01129, 0.03658, 0.015433, -0.015783, -0.048581, -0.063311, -0.081386, -0.056453, 0.018114, -0.014329, 0.015944, 0.060976, -4784e-6, 0.025947, -4687e-6, 2808e-6, 0.061639, 0.014805, 0.084533, -0.054035, 0.048476, 0.02042, 0.072025, -0.037739, -0.037417, 0.031417, 0.066701, -0.022222, 0.027261, -1239e-6, 0.024844, 0.022996, 7947e-6, -0.021468, 0.134242, 0.01541, 0.013386, -0.028404, 0.01727, 0.05404, -0.012093, -835e-5, -0.01922, 0.066985, 0.042483, 0.050626, 0.057021, 0.113253, 0.047148, -0.025412, -0.088769, -0.017653, 1419e-6, 209e-6, 0, 0.093244, -0.044499, 7518e-6, -0.087635, -0.016428, 0.016014, -0.056384, -0.038416, -0.020423, -0.056061, -0.093303, 0.094642, 4315e-6, -0.022908, 0.015732, -0.03492, 0.021362, 0.072576, 0.08384, -0.087971, 0.045001, -0.030767, -2332e-6, 0.024066, 0.103967, 0.012127, -0.02926, -0.033286, -0.074891, 0.025377, 0.021719, -0.030625, -0.041606, -0.058206, -1336e-6, 2313e-6, 0.013545, 473e-5, 0.011661, -0.103174, -0.014941, -0.020019, 0.026728, -0.039861, -0.110596, -0.048301, -0.054394, 0.018646, -0.051112, -2276e-6, 0.042426, -0.055417, -1352e-6, 0.017371, 6978e-6, -641e-5, 1701e-6, 0.063212, 7309e-6, 0.082914, 0.071536, -0.021007, -934e-5, -0.026872, -4258e-6, 0.039668, -0.059937, -0.066027, 0.035903, 8405e-6, 0.022971, 0.068224, 0.044544, 0.038358, -9902e-6, -0.079318, -0.076733, -0.09379, 0.023654, 0.061913, -0.076494, -0.050333, 7308e-6, 0.015177, -0.015528, -0.012081, 0.051917, -0.166522, -0.063968, -9444e-6, -0.083869, -0.024298, 0.013508, -0.024299, 8868e-6, -0, -0.029108, 0.066505, 0.063736, 0.031425, 0.015626, -309e-6, -0.037258, -0.016915, -0.027234, 0.128657, 0.030901, 0.011832, -0.04417, -9803e-6, 0.107151, -0.028772, 0.012312, -0.048072, -0.052176, 0.028654, 0.026746, 0.0252, -0.095663, 0.050823, 0.107235, -6092e-6, 7987e-6, -0.035577, 0.013265, -0.033732, -0.030326, -0.037569, -0.051575, -0.028986, -8984e-6, 0.053629, 0.026504, -738e-6, -0.01532, 0.017389, 0.077723, 0.032407, -5093e-6, -0.043486, -0.014213, 0.016731, -0.103161, 0.053387, -0.093133, -0.073409, 0.065712, 0.027131, 0.052052, 0.046411, -0.01779, 0.024384, 8272e-6, 0.042886, -0.076425, -0.026461, 7573e-6, -0.05014, -0.047398, 0.056482, 0.010346, -0.01025, 0.033626, -0.062296, -0.105837, 0.06161, 0.039435, 0.037817, 0.046092, -0.055251, 0.052569, -0.013637, -0.042205, 0.055153, -0.052475, -0.038436, -0.053227, 0.026335, 0.113183, -0.024479, 0.037871, -5494e-6, -0.034768, 0.029722, 0.048561, -2052e-6, -0.037493, -0.067851, -0.073997, 0.027122, -0.030033, -0, -0.047662, -2944e-6, 0.026785, 0.034125, 0.027091, 0.106156, 0.086283, 0.075415, -0.01473, 0.077662, 0.064846, -0.029676, -0.020012, -0.013718, 8935e-6, 0.020517, -0.011793, -0.054998, -0.032536, -0.107737, -0.085229, -2095e-6, 0.029318, 0.065942, 0.012326, -0.013293, -686e-6, 0.039869, 0.092932, 0.040455, 0.013302, 0.038715, 0.025091, -0.031353, -5517e-6, 0.089469, -0.064572, 0.014492, -0.072891, 0.143436, 0.039163, 0.049226, 1833e-6, 0.053054, 0.145243, 0.030758, -0.050463, 0.053349, 0.033321, -0.054594, 0.012166, -0.092966, -0.056568, -0.012923, -0.067664, 0.015343, 0.040909, -9168e-6, 0.023675, 3875e-6, 0.093085, -0.044497, -7491e-6, 0.035124] },
|
|
4802
|
+
{ name: "graph_analysis", category: "graph", tier: 2, descriptionHash: "218db41a91d7579f", embedding: [-0.037702, -0.01415, -0.049799, 9939e-6, 0.051381, -0.035496, -0.084316, -5095e-6, 3919e-6, 0.034984, 0.04859, 2682e-6, 0.074706, 65e-4, 2802e-6, 0.111698, -0.011849, -0.020623, 0.015508, -0.04964, -0.052358, -0.011564, -2046e-6, -629e-6, 0.026882, -0.021672, -0.104572, 0.01787, 0.020188, -0.048301, -0.016497, 0.089382, -0.038101, 0.023549, 0.03441, 0.095879, 2804e-6, -1905e-6, 0.04066, 0.018946, 854e-6, 0.016385, 0.024714, 8886e-6, -0.028319, -0.040829, -0.124452, 0.03211, -0.109693, 0.062006, -0.034807, -555e-5, -0.026083, 0.028632, 0.041534, 0.089898, -0.030723, -0.031006, -0.042496, -0.019156, 0.132904, -0.056959, -0.086063, -0.071365, -0.026423, 0.046329, 0.048411, 0.096178, 0.019179, 0.034763, 0.02142, -0.025437, -0.107221, 0.059776, 0.023977, 0.093713, -0.031813, 0.04626, -0.09804, -0.184299, 5708e-6, 527e-5, 0.025034, -7965e-6, -0.034581, -0.026577, -0.010369, -0.049226, -0.036507, 0.062274, 0.070834, 0.067408, 0.042689, -0.056099, 0.068445, 0.033804, 0.017002, -0.027429, 0.042252, 0.082936, 0.034863, 0.055003, 0.05653, -7914e-6, 0.035946, 0.065125, -0.028953, 0.055804, -0.0232, -0.02627, -0.038215, 0.045122, 0.025694, -0.049003, -98e-6, -0.041107, -3571e-6, 0.012406, 0.066223, 0.081636, 0.085473, 0.079842, 0.054955, -0.051857, -0.069531, -0.021497, -0.050557, 0, 0.055051, 0.044566, -0.028948, -0.064352, -4307e-6, -0.016625, -0.077812, -0.01372, -0.071037, -0.024941, -0.081663, 0.062318, -6435e-6, -0.034383, 0.053458, 824e-6, 0.087913, 0.066853, 0.035605, -0.076096, -4497e-6, -0.069001, 0.010473, 7032e-6, 0.089768, 0.031367, 0.025684, -0.032846, -0.013895, -9412e-6, -0.014141, 0.022504, 0.054001, -0.023677, 3551e-6, 0.013733, -0.048768, -0.036281, -0.033475, -0.091949, -0.015546, 7962e-6, -0.010813, -0.016708, -0.052864, 63e-4, 16e-6, -6302e-6, 0.010213, 0.030699, -0.028364, -0.029603, -0.036688, 0.035728, -0.055939, -0.060199, 3541e-6, 0.027956, -0.023511, 0.076981, 0.094183, -6815e-6, -0.020686, -0.026809, -0.020146, 0.017253, -0.137856, -7471e-6, 0.09544, 0.020901, -0.032774, 0.071702, -4202e-6, 0.020604, -1166e-6, -0.116409, -0.090947, -0.038033, -8695e-6, -0.037767, -0.077251, -0.074797, -1554e-6, -0.016682, -0.022039, -0.041144, 0.059323, -0.066834, -0.051262, -0.044453, -0.073629, 0.012408, 0.068737, 0.033824, 0.014416, -0, 94e-4, 0.054267, 0.094483, 0.052736, 0.071915, 3909e-6, 0.011432, -0.014338, -0.022103, 0.048237, -0.016813, 0.030267, 0.052945, -0.067479, 0.03591, -0.01268, 0.011997, -0.077734, -0.047849, 0.05501, -0.014646, 0.017289, -0.065395, 0.029618, 0.102596, 0.039789, -0.02487, -0.112258, 0.021468, -7655e-6, -0.046169, -0.018116, -0.039675, -0.029708, 0.021727, 0.013459, 0.014451, 3059e-6, -0.070915, -0.012671, 0.065476, 0.067634, -0.085545, -0.033377, 8085e-6, 0.042985, -0.056538, 0.081474, -0.127848, -0.034592, -275e-5, 0.027298, 0.100102, -0.062067, 3193e-6, 0.037771, 2144e-6, 0.043731, -0.044071, 0.018237, 2369e-6, -0.032801, -0.044472, 0.03182, 0.032718, -0.072935, -1413e-6, 291e-5, -0.133784, 0.056538, 0.059912, 0.063804, -0.011633, -0.045545, 0.075129, -0.010529, -0.032221, -0.054113, -5675e-6, -0.032488, -0.0899, 0.079538, 0.047347, 0.063388, 5526e-6, -0.014798, 0.014084, 0.033868, 0.011323, 0.039796, -0.022339, -0.080295, -0.058092, 0.061644, 0.036257, -0, -0.03616, -0.015379, -0.075844, 0.017655, 0.082979, -0.012183, 0.049863, 0.07659, 443e-5, 0.064617, 0.058047, -2914e-6, -0.122425, -0.018478, -0.044858, -0.035792, -7998e-6, -0.024936, -0.054959, -0.035562, -0.0441, 0.04087, -9787e-6, 0.032435, 0.013639, -0.098586, 0.021745, 0.102292, 0.039326, -0.038989, 0.020202, -0.034475, 3748e-6, -0.056491, -0.059564, 0.106862, -0.01023, 0.064215, -0.032643, 0.111665, -4465e-6, 0.018372, -0.033093, 0.03387, 0.051963, -0.039709, -0.041536, 0.055556, 0.024117, -0.081791, -0.081114, -0.098214, -0.016102, -0.024165, 0.042628, 0.024838, 0.031858, 0.057281, 0.028026, -8512e-6, 0.084273, -0.02077, -4845e-6, -0.025521] },
|
|
4803
|
+
{ name: "health_check", category: "diagnostics", tier: 2, descriptionHash: "35419ee1f91eef5b", embedding: [0.042098, -0.010221, 0.013607, 0.017146, 0.035815, -0.055986, 0.010049, -0.015784, -0.068805, -2694e-6, 0.019186, -0.036861, 2112e-6, 0.014989, 6749e-6, -0.046337, 0.059631, -0.029455, 0.103157, 8213e-6, -0.017798, -0.021228, -0.018661, 0.019638, -0.082712, -2843e-6, 0.010516, -0.020405, -0.019899, -0.013228, -0.020169, -83e-5, -0.03909, 4627e-6, 0.110363, 0.071428, 0.058265, -0.020174, -0.079486, -0.111261, -0.015998, -0.098834, -0.020115, 0.075261, 0.04383, -0.019594, -0.086168, -0.039353, -0.020419, 6174e-6, -5643e-6, -3549e-6, 0.064188, 0.051436, -1187e-6, 0.071041, -0.080645, -0.052641, -0.017856, -0.040878, -0.058466, -0.030143, -0.021871, 5196e-6, 0.03649, 0.103259, 0.04281, -0.021016, 0.086996, -0.023369, -0.062541, -0.04716, -0.018999, -0.010373, 0.013981, 0.048243, -0.018279, -0.093459, 0.067975, -0.039086, -0.08085, 0.045392, -0.023463, -0.024363, -0.011726, 0.037568, 4962e-6, 0.011131, -0.046025, 0.032711, 0.088463, 0.079063, -0.115872, 0.015268, 0.028929, 606e-5, -0.127494, -0.039211, -0.022529, 0.025761, -0.050825, 0.025445, 0.027832, 0.023055, 0.061793, -0.052684, 0.06973, 4489e-6, 0.057591, 0.051982, 0.016124, 0.101455, 0.06308, 0.031277, 0.109119, 0.112296, -77e-4, 0.020218, -0.029739, 0.116469, 0.101305, -0.056276, -4807e-6, -0.035222, 0.013513, 0.044431, 0.046412, 0, 0.034161, -0.051149, 0.085176, 0.074172, -0.018101, 0.029876, 0.031334, -0.08557, 0.01016, -0.014757, -0.018228, 0.015125, -0.035447, -0.050631, -0.028137, -0.057498, -0.010435, 0.130446, 0.061377, 4382e-6, -0.017236, -5399e-6, 0.028656, -0.042492, 0.062422, 0.060523, -0.086728, 0.026033, 0.04416, 0.025558, -0.019334, -0.073665, -0.060225, -0.053568, -0.030187, -0.034036, 0.037402, -0.016977, -0.040473, -0.04299, -0.051764, -0.070686, 0.021825, -6669e-6, -0.047946, -0.084422, -0.107649, -0.032086, 0.017312, 0.033712, -8731e-6, -0.011402, -0.057125, -0.062328, -0.041109, -0.045506, -0.017394, -5759e-6, -0.040469, 0.044262, 0.054498, -0.017975, -0.025406, -0.096168, 0.019194, 0.011998, -0.105589, -0.045403, 0.055652, 0.061266, -0.014685, 0.017378, 0.048895, 0.030938, 0.034512, -0.04547, -0.073568, 0.045136, -0.033516, 0.058373, 0.034597, -3358e-6, -0.058378, 0.079645, 0.053272, 0.034071, -0.020233, 0.032508, -0.012102, -8996e-6, -0.030061, 0.02343, 0.063146, 0.032944, -0.025571, -0, 3695e-6, -0.022737, -4082e-6, 0.06922, -0.036145, -0.055401, -0.011709, -0.025794, -0.031915, 0.015533, 0.081834, -1532e-6, -0.057515, -0.044946, 0.027364, 0.05167, -0.053823, -0.04411, 0.032079, 0.130426, 0.018323, 0.041176, -0.042522, 0.081083, -0.053866, 0.061814, -0.016614, 0.052245, 0.081203, -0.102396, 0.053177, 0.111717, -0.037593, 0.096094, 0.047444, -0.081956, 0.032023, -0.017864, -0.042363, 0.049793, 0.135365, 0.016541, -0.099832, -3091e-6, -0.080653, 0.022527, 0.100075, -38e-4, -0.025685, -0.017251, -0.023675, -0.085652, 0.018794, 0.058319, -0.041485, 0.082255, -0.083499, -0.023174, -0.04054, -0.020055, 0.031691, -0.019896, -0.064017, 798e-6, 3193e-6, -3111e-6, 0.080873, 1044e-6, -0.015256, 0.048336, -0.081559, -0.041238, 0.069639, -0.04461, 0.074175, 0.038243, -0.049453, -0.036677, -4584e-6, -0.019001, -0.011618, -0.034603, -0.058754, 5514e-6, -0.022226, -0.025485, 0.055479, 0.043165, 0.012901, -0.044055, -0.070295, -0.023932, -0.092511, 0.011411, -0.022514, -0, -0.029338, -0.052803, 0.026595, -0.02121, 0.022579, 0.013417, -0.046713, -0.063779, 0.016598, 0.039555, 0.013993, -0.052917, -0.026017, -0.117152, 0.063852, -0.033988, -0.061932, 0.046686, -0.037649, -0.076865, -0.11752, -0.030237, 0.01829, -3467e-6, -0.01478, 0.11064, 0.018172, 0.08558, -105e-5, -2802e-6, 0.053259, 0.016673, 2774e-6, 0.017474, -0.019479, 0.120611, 0.0696, 4938e-6, 0.06889, 0.079819, -0.036873, -146e-5, -0.037192, 9926e-6, -0.05306, 5303e-6, 6483e-6, 0.09319, -8584e-6, -0.070323, -594e-5, -0.054477, 2247e-6, -5635e-6, -0.01159, 0.047594, 0.075011, -0.041746, 0.01253, 0.010298, 0.059092, -0.026054, -0.070753, -0.057863] },
|
|
4804
|
+
{ name: "init_semantic", category: "search", tier: 1, descriptionHash: "fa226a5071c15e50", embedding: [5338e-6, -7139e-6, -0.056696, -0.032389, -2108e-6, -0.028533, -0.060932, -6599e-6, -0.033938, -0.05003, 0.03832, -0.031791, 0.098809, 0.037869, 3983e-6, 0.062636, 0.053494, 0.047268, -0.014743, -0.047136, 0.018554, 0.056758, 0.055964, 271e-6, -0.043924, -0.019842, -0.087824, -2228e-6, 0.05183, -0.03851, 0.045165, 0.068559, 0.013718, 0.077704, 0.037508, 0.061154, -0.051788, -0.024131, -0.013218, -0.063366, -0.065756, -0.034576, -0.051544, 0.029915, 0.04264, -0.021231, -0.10427, -0.039246, 0.01532, 0.034684, -0.08566, -0.017697, -0.035461, 0.066978, 3357e-6, 0.068414, -0.03126, -0.022703, -0.078433, -0.123898, 0.067746, -0.015699, 0.021032, -352e-5, -131e-6, 0.055462, 0.079788, 0.010246, 0.124073, -0.096965, 0.07469, -0.034075, -9768e-6, 2491e-6, -292e-5, 0.094689, 0.010997, 1923e-6, -0.05157, -0.094893, -0.040987, -0.015784, 0.03792, 0.05089, 0.010825, -0.040637, 0.037269, -0.085501, 5887e-6, 9152e-6, 0.080756, -0.081288, 6323e-6, -0.043088, 0.031724, 6281e-6, -952e-5, -0.061481, 0.026041, 0.013432, -0.071707, 0.031594, 0.023741, 0.013697, 0.029252, 5772e-6, -0.012459, -0.012413, 0.078263, -0.092659, -773e-5, 0.037822, 0.061571, -0.010996, 9293e-6, 0.016257, -0.012481, -0.031283, 0.066995, 9956e-6, 0.041248, 0.018143, 0.020373, -0.072115, -0.062937, 0.012625, -0.073486, 0, 0.078713, 0.030933, 0.015288, -2591e-6, 5139e-6, -6247e-6, 0.024345, 0.054323, -0.107424, -0.032847, -0.065556, 0.047698, -0.03393, 3557e-6, -0.013677, -0.03972, -0.098355, 0.064279, -0.033718, -0.011292, 0.061253, 0.060118, -0.025001, -0.051016, 0.044412, -8011e-6, -1639e-6, -0.072819, -0.014045, 0.011185, -0.055195, -0.015693, -0.024702, 6517e-6, 0.028252, -2106e-6, 2067e-6, 0.021383, -0.032082, -0.107265, 8851e-6, 0.017499, 6368e-6, -0.118434, 0.016983, 0.033314, -0.033827, -0.012695, 0.063966, -0.044345, 0.042551, 0.038533, -0.057204, 0.02109, -0.01309, -0.048126, 0.027433, 0.026868, 0.036119, 0.027675, 0.024596, -0.038801, -0.019045, 0.065558, -0.034538, -0.027025, -0.027664, -0.037911, 0.098918, 0.082959, -2717e-6, 0.043076, -8264e-6, -0.023988, -0.036235, -0.108329, -0.041326, -0.038697, -0.063559, -0.015012, -0.054366, -0.052931, -0.028873, 0.04431, 0.018186, 0.038497, 0.03592, -0.108066, 0.022874, -0.08067, -0.043521, 1572e-6, 6134e-6, -7635e-6, 0.019191, -0, 0.018635, -0.089623, 0.078022, 0.067513, -7312e-6, -0.027473, 0.0161, 0.018113, -0.029775, 0.081931, 0.019961, 0.035071, 0.031065, -0.039871, 0.021001, 0.0723, -0.041995, -0.042394, 0.010299, 0.132857, -0.013705, 0.060844, -0.143551, 0.119397, 0.030172, 0.068462, 0.019325, 52e-6, 0.040194, -0.103401, -0.013762, 945e-6, -0.075048, -0.039664, -0.090412, -0.027677, 0.032596, -0.076194, -0.141734, 0.064388, -0.016965, 0.053672, -0.149895, -0.011822, -8349e-6, 795e-6, -0.073774, 0.026935, 0.023701, -0.055801, 0.104818, -0.013435, -278e-6, -0.014825, 0.015003, -0.018388, 0.020783, 0.046595, -0.094454, 0.045986, 0.072429, 894e-5, 0.021231, 0.034086, -0.015518, -0.026903, -0.021944, 0.075294, -0.161388, 0.015551, -0.019626, 8923e-6, 0.07433, 0.023455, 0.084777, -0.021048, -4675e-6, -0.054543, 0.01972, -0.062898, -0.066149, -8894e-6, 0.062838, 0.077288, -0.041959, 0.02097, 0.031891, 0.05994, -0.028328, 6243e-6, -0.057171, -0.037532, -0.025275, 0.027197, 6264e-6, -0, -0.046186, -5776e-6, -0.022563, 0.058572, -0.01614, -0.035796, 0.042767, 0.116086, -0.03226, -6953e-6, 0.014503, -1057e-6, -0.06242, 0.045114, 1464e-6, 0.032065, -0.038655, 0.012869, -0.047215, -0.012622, -0.010533, 0.076899, 0.056658, 0.017112, 0.056843, 0.029147, 0.036958, 0.074486, 0.125598, 0.046518, -0.018314, -0.030508, 0.015844, -0.042576, 0.02098, 0.122641, 0.047685, -0.020906, -0.050819, 0.050661, 0.044995, -0.058413, -9495e-6, -0.014138, 0.06737, 0.014642, -0.057599, -2205e-6, 0.059594, 0.010826, -0.033974, -0.056899, -0.029152, 0.048442, 0.020542, 0.046588, -1215e-6, -4147e-6, 0.12482, -0.036818, 0.120814, -0.082895, 0.08822, 0.023866] },
|
|
4805
|
+
{ name: "list_entities", category: "graph", tier: 2, descriptionHash: "2268c6bf137ee081", embedding: [0.072476, 0.040959, 7619e-6, 0.05913, 0.039561, 0.04743, -0.041533, 0.036388, -8062e-6, 0.02283, 0.019703, -0.098383, 0.03105, -0.041062, 0.070501, 0.049687, 0.011258, 0.064769, 0.042451, -0.165081, 0.05949, 0.025745, -0.034849, -0.042229, -7561e-6, -0.037901, -0.03463, 6377e-6, 0.016287, -0.078676, -0.079031, 0.117229, -0.041009, 0.097603, -0.027558, -0.029002, 0.067126, -0.025836, 0.062588, -5056e-6, 0.028288, 0.030739, 0.066844, -0.058237, -0.023068, 0.049042, -0.128054, 2573e-6, -0.042119, 794e-6, -0.027923, 179e-6, -0.026216, 0.080214, 0.093481, 0.052693, -0.062057, -0.030302, -0.055243, -9458e-6, -0.072899, -0.043056, 0.03992, -0.014752, -0.110267, 9633e-6, 0.032124, 0.052555, 0.041673, -0.015159, 0.051516, -0.054608, -0.079297, -0.067373, 0.035296, 0.017274, 0.033147, 0.014091, -0.016989, -0.055505, -0.132601, 0.117783, 0.048091, -0.014549, 0.012396, -0.030911, -0.010336, -0.052071, -0.069984, 0.041218, -0.065875, -7905e-6, 0.054694, 0.041051, 0.049301, 0.045982, 0.074883, -0.066638, 0.079745, 0.060989, -0.081806, 0.041195, -0.100023, -0.059792, -0.113991, 0.01168, -3563e-6, 407e-5, -3054e-6, -0.019259, -0.034691, 0.066507, -0.016448, -0.038126, 0.018088, -0.057663, 0.053301, 0.020699, 0.10772, -254e-5, 0.080562, 0.045686, 0.031977, 0.040246, -0.019553, 0.078306, 2958e-6, -0, 0.10875, -1257e-6, 0.095049, -0.074968, -0.096852, -5687e-6, -0.023795, 0.053493, -0.019986, 0.02205, -0.088992, 0.118832, -0.018137, -3471e-6, 0.016169, -0.035258, 0.017555, 0.067714, -0.026747, -0.019461, -0.019782, 8312e-6, -0.024338, 4015e-6, -6812e-6, 2562e-6, -0.049144, -0.053389, 2392e-6, 0.04041, -0.031724, 1576e-6, -0.048006, -837e-5, -0.034116, 0.053195, -9111e-6, 0.021124, -0.048404, -0.042551, 9504e-6, -0.031663, -0.022401, -0.072896, -0.044191, -2172e-6, -0.105491, -0.067748, 0.100234, 0.060841, -6797e-6, -0.03078, 0.032978, 0.043604, -0.018272, -0.022584, 0.042188, 0.035444, -424e-6, 0.083877, -0.022202, 0.013543, 4214e-6, 0.017165, 4638e-6, 0.040636, -0.017012, -7491e-6, 0.017594, 0.025539, 0.085109, 0.07994, 0.072906, -0.043607, -1468e-6, -0.045133, -0.064249, -0.088129, -0.041897, 0.047957, -0.037786, -0.016898, 512e-5, -0.075959, 0.057501, 36e-4, 0.014709, -0.025562, 0.010567, -0.04348, -0.132661, -4533e-6, 0.039752, 758e-5, -0.019094, -0, 0.039142, 0.020674, 0.072412, -0.081714, 0.03777, -0.062073, 0.041071, 0.010555, -0.102703, 0.109796, 0.025371, -0.024995, 0.01376, -0.0272, 0.047904, -0.034581, -0.022428, -0.053089, 0.043817, 0.108958, -5355e-6, -0.050134, -0.011666, 0.086875, 0.097985, -856e-5, -0.016879, -6035e-6, -0.031863, -0.106438, 0.085077, -0.054067, -0.027835, -6169e-6, -0.020855, -0.046378, -0.084212, -0.037942, -0.06174, -0.036423, -0.071074, 0.022166, -0.107192, 0.051591, 0.01494, -0.01784, 0.037764, 0.043455, 0.024991, -0.010252, 0.012518, 0.045026, 0.083236, 0.042978, 0.014948, -6113e-6, -0.010451, 0.023493, -0.030216, 1485e-6, 0.034381, 3702e-6, -0.051297, 0.0768, 0.026415, -0.064949, 6083e-6, -0.039926, -0.067699, -5542e-6, -8116e-6, -194e-6, -0.038946, -0.036379, 0.042593, 0.010146, 4077e-6, 0.050572, -0.031773, 0.015955, 0.011107, -0.051738, 0.057151, 6366e-6, -0.010762, -0.057745, 0.037819, 0.073548, 0.04618, 0.073238, -0.031983, -0.053052, -0.010112, -0.012583, 0.057498, -0, -0.061925, -0.011477, -0.027821, -0.025908, -0.038209, 8892e-6, 0.011451, 0.084147, -0.09702, 0.041782, -1136e-6, -0.02411, -0.081939, 0.013116, 0.099489, -0.026616, 0.067936, 0.053215, 0.042399, 0.067396, -0.071709, -0.033205, 0.024321, -0.092149, -0.039061, -0.027029, -0.023332, -0.027554, 0.061379, -0.017312, -0.043264, 0.022346, -0.01449, -1858e-6, 0.028369, 0.013933, -8827e-6, 0.017953, -0.011571, 0.102588, 0.048813, 0.01896, -7433e-6, 0.030767, 0.024239, -0.027291, 867e-6, 6158e-6, 0.081067, -0.042503, -0.113608, -0.057077, -0.103475, -0.060197, -0.086425, 0.033167, -0.017594, 112e-5, 7188e-6, -0.018211, 0.08924, -0.045251, -0.017178, 0.056404] },
|
|
4806
|
+
{ name: "memory", category: "memory", tier: 1, descriptionHash: "45f3a81417048759", embedding: [0.011638, 0.027381, -0.153793, 0.067048, -0.071346, 0.06321, 0.070671, 0.030032, -795e-5, 0.029047, 0.034404, -0.018573, 0.046258, -3413e-6, 0.060908, 0.035055, 0.023579, 0.040902, -0.024306, -0.078888, 0.104173, -0.014093, -0.038631, 0.01571, -0.06151, -0.012426, -0.110972, -0.032241, 0.042909, -0.098934, 0.054136, 0.046441, -8427e-6, 0.096265, 2117e-6, 0.093053, -0.03088, -0.056822, 0.022809, -0.102702, 3711e-6, 0.033968, -0.111042, 0.023453, -0.023646, 0.055467, -0.040025, -0.030272, -0.048126, -0.046162, -0.042203, 0.043686, -0.071577, 0.104359, 0.034411, 0.073739, 0.010794, -0.021305, -0.08985, -0.020348, -0.063906, -0.099921, -1037e-6, 5672e-6, -0.081259, -538e-6, 0.022921, -0.017665, 0.058496, -0.096999, -0.019849, -0.075303, -0.058216, -0.058099, -107e-5, -0.040987, -269e-5, -0.065252, -0.017585, -0.057727, -0.081087, 0.016362, 381e-5, 0.052872, -6157e-6, -0.010287, 0.020453, -0.022712, 0.0433, -0.011831, -0.014731, -0.03765, 0.036513, 0.011813, -2763e-6, 0.017795, 0.030816, -0.049992, 0.014979, 0.02769, 0.038634, 0.11206, 0.038817, 0.027482, -0.041947, -0.030541, 0.040125, 0.030566, -0.034728, -0.041092, -0.073051, 8278e-6, 0.023818, 0.021716, 0.082935, -0.010862, -0.024328, 0.017019, 5439e-6, 0.067506, 0.134542, 0.024058, 0.050682, 0.023084, -0.029798, -0.027121, 3028e-6, -0, 0.035434, -0.045285, -0.025698, 0.069584, 0.038487, 0.0612, 0.05076, 0.034664, -0.019691, -6602e-6, -0.022187, 0.069284, -0.06747, 0.083532, 0.071433, -2779e-6, -0.075092, 0.10491, 0.042798, -0.031314, 0.037571, 0.086896, 0.014597, 0.032234, 0.098512, -165e-6, -0.048188, -0.020218, -0.035458, 0.012896, -0.014527, -5254e-6, -0.062685, 0.018684, 0.026438, 0.061433, -0.031149, -4007e-6, 2622e-6, -0.136532, -0.055542, 0.024268, 0.020039, -0.084226, -0.082394, -0.134648, -0.059878, -1355e-6, 0.029494, 0.068864, 0.026044, 0.016124, 0.029977, 7574e-6, 0.02198, -4216e-6, 6011e-6, 0.043112, 0.020432, 0.109407, 5306e-6, -0.033515, -3327e-6, 0.034449, 0.02712, 0.027293, -0.028861, 0.02215, 0.052129, 0.021137, -9137e-6, 0.042598, 0.064318, 0.020633, -0.053781, -0.066952, -642e-6, -0.09255, -0.086394, -0.026018, 0.043297, -0.045277, -0.035292, 0.061889, -0.021046, -0.013278, 0.064866, -0.119898, -0.026258, 0.040655, -0.120378, -0.027928, 0.031963, 8115e-6, -0.044673, -0, 0.048361, -0.062356, -0.052944, 0.026187, -0.011005, -7092e-6, -3493e-6, -0.063024, -0.102912, -3145e-6, -0.050343, 0.033012, 0.043919, -4977e-6, -0.012296, -9791e-6, 0.036442, -0.075847, 0.011798, 0.037492, -0.06188, 0.026348, -0.03079, 0.056215, 7192e-6, 5845e-6, -0.034111, -0.031929, 0.036961, -0.0292, 0.046992, -0.054361, -0.012253, 0.025471, -0.025528, -0.03685, 0.043202, -3543e-6, -0.061932, 0.027306, 0.112459, -0.019572, -0.034108, -465e-6, 0.02864, 0.012227, -0.088292, 0.06781, -0.010571, -0.025587, 8475e-6, 367e-6, -0.0964, -0.082596, -0.012763, 0.019941, 0.02212, 979e-6, -0.032625, -0.091037, 1612e-6, -742e-5, -0.065345, 0.03664, -0.044182, -0.056848, -8747e-6, -0.014827, -0.044778, 0.021109, 0.067047, 0.010801, -6829e-6, -0.022162, 0.02442, -0.01295, -0.089266, -0.043234, 4904e-6, -0.018074, -0.067491, 0.02763, 0.05223, 0.039631, -0.032749, -3265e-6, -0.024446, 0.076594, -0.021792, -0.076766, -0.049277, 9977e-6, -0.081623, 5711e-6, -0.010214, -0, -0.043206, -0.042124, 0.119402, 0.034377, 0.037466, -0.075027, 4245e-6, 0.1032, -2248e-6, 0.018816, 0.101649, -0.028114, -0.067975, -0.03386, 0.102938, 0.033647, 0.02172, 0.042651, -0.019006, -0.040287, -0.018029, -0.017284, 682e-5, 4585e-6, 6758e-6, -0.032919, 0.022956, 0.113528, 0.014903, 0.074603, 0.113463, 0.024985, 0.028521, -0.018503, 0.050275, 0.045229, -2816e-6, -3419e-6, 9316e-6, 0.015322, -3618e-6, -0.039361, 0.034059, 0.075726, 0.056185, 0.068605, -0.083485, -0.030673, 0.054001, -0.109731, -0.078252, 0.039367, -0.03488, 0.114094, -0.010739, 0.043012, 0.072608, -0.086893, 0.109772, -0.026197, 0.066311, 0.032561, -0.046039, -0.018278] },
|
|
4807
|
+
{ name: "merge_entities", category: "note-ops", tier: 3, descriptionHash: "12f9a09b397b643d", embedding: [-0.064938, -0.041596, -0.020008, -1483e-6, 4863e-6, -8267e-6, 1821e-6, 0.024978, 0.031708, 0.075989, 0.084463, -0.04668, 345e-6, -0.036156, 0.112928, 0.142223, -0.036214, 0.095989, -0.057018, -0.065181, 0.023147, 0.025873, -1434e-6, 0.016323, 0.068705, -0.025865, -0.056996, 0.016333, -0.024546, -0.061948, -1019e-6, 0.063565, -0.011168, 0.036352, 0.030841, 0.139215, 0.047073, 0.021669, 0.067294, -3782e-6, 1647e-6, -0.028426, -0.036675, -0.045358, -0.081348, -0.018465, -0.104856, 0.010319, -0.028553, 833e-5, -0.022636, -0.10705, -0.078309, 0.084218, 6091e-6, 0.063933, -0.04594, 0.039289, -0.076426, -0.027746, 0.023555, 0.045398, -5494e-6, -0.030885, -3045e-6, -0.04503, 0.01804, 0.073391, -5022e-6, -0.038874, 863e-5, -7587e-6, -0.041732, -0.050566, -0.024883, -4004e-6, -0.018183, 0.013259, -0.107865, -0.087699, -0.061215, 0.060235, -4815e-6, -0.020522, -6043e-6, -8464e-6, 0.014767, -0.030649, -0.023993, 0.057241, -0.015899, -0.029373, 0.124417, -0.031404, 0.091125, 0.060255, 0.040701, -0.080113, 0.107392, 0.06995, -0.033868, 0.129631, -0.015156, 2145e-6, -0.010455, 0.027657, -0.064365, 0.051035, -0.037741, -0.031276, -109e-6, 0.032043, 0.010878, -0.102701, 1428e-6, -0.016898, -0.033466, 7804e-6, 0.047226, -6828e-6, 0.078192, 979e-5, -0.078234, 0.062455, -0.06449, 0.037185, -0.013712, 0, 0.092715, 0.102144, -0.019497, 0.01544, 651e-6, 0.032606, -0.015611, 4393e-6, -0.098003, -0.040847, -0.028164, 3812e-6, -0.018613, -5808e-6, -0.047336, -0.089319, -6141e-6, 0.155218, 0.052009, 0.049971, 0.033925, 0.031994, -0.044667, 0.046708, 0.051404, 0.035765, -0.045738, -0.039747, -0.050765, -0.022273, 0.015273, -0.025299, 0.05443, 0.029938, -0.023332, 0.056659, -0.04529, -0.092158, -7007e-6, -0.059419, 0.042896, 0.032447, -1131e-6, -0.037504, 3837e-6, 0.037427, -0.044896, 3527e-6, 0.116625, -0.024827, 0.059172, -0.015628, 0.037823, 7988e-6, -0.041819, -0.026263, -0.026329, -0.062123, -0.015335, -2332e-6, 1532e-6, 7593e-6, -0.099995, 0.052854, 0.022981, 0.024573, -0.013599, -0.016977, 0.099869, -0.058491, -0.038044, 0.070863, -0.048694, 0.056041, -0.02856, -0.083954, -0.066651, -0.0423, 0.056564, 0.038207, -0.014033, 0.020271, -0.05301, -0.038218, 0.063495, 0.036353, -0.051479, -0.104971, -0.033165, -0.02217, -0.057245, 225e-6, 0.025227, -0.022017, 0.065798, -0, 0.055905, -0.017428, 0.014157, 477e-6, -0.029658, 0.013673, 1534e-6, 6309e-6, -0.06834, 0.045957, -0.044397, -0.040106, 0.02169, -0.087507, -0.065679, -0.06074, 5485e-6, -0.033212, 0.012447, 0.088494, 0.014144, -0.0156, 0.087789, 0.110598, 0.125985, 5856e-6, -0.065267, -0.020798, 0.030577, -0.074967, 0.070152, -0.05871, -0.028718, -0.089016, 0.016519, -0.053047, -1445e-6, -0.038364, -0.033056, -6513e-6, 0.049473, 0.051029, 0.016741, 0.039763, 0.017385, -2515e-6, -0.016834, 0.056279, -0.079289, -0.066988, -0.045543, -0.042019, -0.024895, -0.064215, 0.033349, 0.022225, 0.081922, 8571e-6, -0.052879, -0.08148, 0.024905, 0.080947, 0.01707, 0.061778, 0.029382, -0.032946, -472e-6, 0.017513, -0.101246, -3456e-6, 0.019729, 7545e-6, 5037e-6, -0.074225, 0.069457, -0.078561, 5193e-6, -0.062579, -0.022624, -0.027398, -0.056016, -0.014127, 0.067913, 0.044596, -0.024489, -0.041521, 0.037485, 0.046048, 3764e-6, 0.027602, -0.078517, -0.02503, 0.06894, 0.053683, -0.020609, -0, -0.026934, 0.073291, -0.086364, -0.018738, -0.014094, -0.068315, -0.020464, 0.024249, 0.013816, -0.026912, -0.010755, -4505e-6, -0.103033, -0.044355, 0.029174, -0.070335, 0.031572, 0.025153, -3596e-6, -0.049103, -0.050256, 0.048629, 0.011521, -0.043433, 0.097787, 0.010823, 2911e-6, 0.102668, 0.085108, -0.029215, 0.054062, 0.035734, -5274e-6, 0.061396, 0.03112, -0.030595, 0.074635, 0.042476, -0.034112, 0.064065, 0.047431, 0.081193, -0.060788, 0.069014, 0.052428, -0.081599, -0.05905, -0.044281, 0.025758, -0.05666, -1126e-6, 5833e-6, 0.011119, -0.013539, -0.044922, 0.058291, 0.063896, 0.058797, 0.020635, -0.03696, 0.079423, -0.082638, 0.049077, 7372e-6] },
|
|
4808
|
+
{ name: "migrate_field_values", category: "schema", tier: 3, descriptionHash: "3363cd5d82fa9d09", embedding: [0.021021, -3009e-6, -0.054306, -0.030161, -0.028766, -0.026305, -0.065554, 0.013102, -0.066302, 0.03997, 0.010164, -0.065083, 841e-5, -0.053065, 0.112856, 0.070248, -0.052577, 0.117705, -0.097033, -0.035529, 0.013868, -2289e-6, -0.079768, 0.035347, 0.078202, -6087e-6, -0.032295, 0.033687, -0.035383, -0.03821, -0.094342, 0.073095, -0.013644, 0.041477, 0.036284, 0.1037, 0.012438, 3754e-6, 0.04862, -9624e-6, 0.061732, -0.054902, -0.012507, -0.02206, -0.036722, -0.03638, -0.017815, -7512e-6, 7288e-6, 0.022832, -0.019014, 0.038159, -0.030011, 0.154518, -0.011904, 0.146199, -5253e-6, -0.064278, -0.071534, 1864e-6, -0.084088, 0.021722, 0.074484, -6379e-6, -0.046127, -9159e-6, -0.047274, 7189e-6, 0.051002, -6307e-6, 7869e-6, -0.015178, -0.077002, -0.032947, 0.01531, 0.028479, -0.03721, 0.010541, -0.022334, -0.044907, 29e-5, 3632e-6, -0.088614, -0.018601, -0.037439, -0.047708, -0.05148, 5625e-6, -0.05879, 0.073198, -0.013642, -0.026602, 0.058662, 0.062717, -0.047263, 0.015137, -0.011214, -0.058592, 0.104316, -0.01, -0.027751, -7241e-6, 0.046629, -0.019558, -0.077162, -0.057582, 0.034887, 0.060896, -0.111048, 0.012828, -3947e-6, 0.025472, 0.058423, -0.08852, 0.028822, 0.07217, -0.076585, -0.017448, -0.096776, 0.03066, 0.05676, 0.011241, 5023e-6, 0.059764, -0.034523, 0.049963, -8219e-6, -0, 0.052377, 0.015415, 0.07879, 0.036244, -0.021772, 0.033855, 41e-5, 6929e-6, -0.02209, 0.018192, 3421e-6, 0.086308, -0.03068, -0.032774, -0.046127, -0.113359, -653e-6, 0.035409, 0.060257, -0.012255, 0.097561, -7266e-6, -0.099956, 0.043019, 0.07465, 0.029607, -0.09609, -0.050935, -0.049078, 0.016516, -7991e-6, -0.010737, 0.035268, -0.038559, -0.017511, 0.024309, 8949e-6, 0.030446, 0.034994, 0.026874, 0.037436, -6507e-6, 9481e-6, 0.010813, 0.024233, 2327e-6, 0.019507, 0.051722, -4187e-6, -0.059383, 0.091957, -0.055058, 7115e-6, -0.017389, -5347e-6, -0.060967, 314e-6, -0.015045, -9762e-6, -0.020431, -8674e-6, 0.040356, -0.085181, 0.063532, 0.044584, -0.016199, 272e-5, -759e-5, -0.045261, 0.042968, 0.012356, 0.062791, -0.106372, 3136e-6, -0.040724, -0.023198, 0.043808, -0.040823, 845e-5, -382e-6, -0.076612, 0.105229, -0.071468, -0.037146, 0.067416, 0.027802, -0.021509, -0.010626, -0.075122, -0.096742, 0.020048, -0.02982, 0.038604, -0.08006, 0.047776, 0, 0.068616, -0.060724, 0.035916, 0.078383, 0.026781, -7278e-6, 0.07599, 0.076061, -814e-6, 0.083911, -0.035459, -0.015554, -0.023888, -0.13196, 0.038066, -0.073873, -0.067123, 3313e-6, 9997e-6, 0.021177, 0.050088, 0.080279, -0.064565, 0.136915, 0.010567, -0.03461, -0.060674, 0.031342, 0.029234, -0.027268, 5869e-6, -0.110787, -5504e-6, 0.021591, -0.049712, 0.018083, 0.050473, 4841e-6, -0.027188, 0.072863, -0.075439, 0.02359, -0.063907, -0.013747, 0.019621, 0.06706, 2775e-6, -0.021942, 433e-5, -0.018504, 0.025886, 1111e-6, -0.043995, 0.049325, 0.032032, -0.042936, 8297e-6, -0.053384, -0.046503, -0.080223, 0.04968, 0.023081, 0.058717, 8753e-6, 0.024787, 0.010257, -2518e-6, -0.015533, -0.099481, -0.039292, 0.013124, -0.027052, 0.01636, 0.046509, -0.013899, -0.096753, -0.034451, 0.065674, 0.029656, -0.010535, 0.038528, -0.040334, 0.092955, 0.033381, -0.038934, -0.038993, 0.028506, 0.030867, 0.080098, 0.058592, -0.117142, -0.024384, 8667e-6, -0.07149, -0.022384, -0, -0.042169, 0.030887, 0.0287, 0.044495, -0.020153, -897e-6, 0.027405, 0.133152, 0.097332, -0.017014, -0.091699, 0.02689, 0.015508, -0.080715, 0.066108, 0.029535, 0.074878, 0.029883, 0.025509, -0.053653, -0.01315, 0.065129, 9452e-6, 0.014442, 0.103194, -0.024196, -0.060381, 5227e-6, 0.110215, -0.050154, 8376e-6, -0.076967, 0.0636, 0.042553, 0.057492, 0.043187, 0.016324, 0.045715, -0.068301, -4971e-6, -0.027912, 7485e-6, -0.108526, -0.032374, -2901e-6, -0.093471, -0.056782, 0.072195, 0.074339, -5816e-6, 6648e-6, 1871e-6, -3557e-6, -0.021613, -0.088838, 0.038724, 0.073866, 0.063613, 0.045717, -0.064016, 0.048875, -0.044664, -0.043147, 2968e-6] },
|
|
4809
|
+
{ name: "note_intelligence", category: "schema", tier: 3, descriptionHash: "9624718014725d6f", embedding: [-0.021721, 0.03244, -0.022821, 0.040045, 0.078219, -0.039268, -9253e-6, 8056e-6, -0.015215, 0.022836, -5726e-6, -0.020408, -6506e-6, 0.039833, 0.06446, 0.163351, -0.081611, -0.026372, -9331e-6, -0.088744, 0.090845, 0.088905, 0.079488, -0.032071, -395e-5, 0.018092, -0.033135, 0.034544, 0.034676, 5762e-6, 0.031121, 0.110156, -0.040171, 0.028724, 6432e-6, 0.137834, -0.026288, 0.018105, 0.0767, 0.011678, -0.018296, -7469e-6, -0.014789, -0.015436, 0.047695, -0.062694, -0.073712, -0.019704, -0.041849, 0.044211, -0.110176, -0.065685, -0.069746, 0.012898, 0.041291, 0.058195, -0.035406, -0.01005, -0.073567, -0.073814, 0.058491, -0.048377, -0.036464, -0.072442, -0.038246, 0.037668, 8611e-6, 0.056896, 0.054337, 1474e-6, 0.045148, 0.018822, 137e-6, -0.014426, -1434e-6, 0.022023, -0.02751, -0.042957, -0.02206, -0.129949, -0.065261, 0.013708, 0.041571, 0.069716, 0.062351, -0.021512, 0.024374, -0.036755, -6933e-6, 0.06321, 0.061707, -0.131207, -0.010346, -0.043802, 0.082019, 0.042776, -9908e-6, -0.093992, 0.043833, 0.07593, 0.016065, 0.041108, 0.087271, -0.029289, -0.015693, 0.060346, -0.012491, 0.033082, -0.06166, -0.031668, -0.013376, 0.051964, 0.040838, -0.012306, 9082e-6, -0.028677, 4207e-6, 0.010123, 0.086838, 0.098987, 0.108865, 0.042226, 0.034863, 0.012883, -0.040383, 3321e-6, -0.094143, 0, 0.110841, 0.045966, -0.039811, -0.038259, -0.026083, -2954e-6, 7802e-6, 0.037843, -0.114729, 0.023855, -0.013818, 0.070081, -0.045901, -0.032551, 0.011143, -0.01089, -0.027403, 0.078859, -0.069521, 0.026307, 0.03384, -0.023161, -0.070476, 0.012082, 0.032574, 6821e-6, 0.01963, -0.030829, -0.054244, 5203e-6, -3306e-6, -0.021037, 0.048904, 0.038995, 0.022904, 3468e-6, -0.012643, -0.033377, -0.012381, -0.084105, 0.03508, 0.052255, 0.049412, -0.053142, -0.025397, 0.029852, -0.024063, 2514e-6, 0.085551, -0.014149, 7893e-6, -0.024017, 0.019042, 0.054662, 0.014779, -0.029853, -0.013883, 0.064124, 0.042702, 7874e-6, 0.025561, 0.01872, -0.054137, 0.045658, -0.043557, 0.057565, -0.057883, 0.031552, 0.080499, 0.029453, -0.010708, 0.074137, -0.059099, -0.032129, -0.010939, -0.125401, -0.051799, -0.10454, -0.060593, 0.019304, -0.053672, 67e-4, -0.036113, 872e-6, -0.018403, 0.022605, 3728e-6, -0.082509, -0.047509, -0.097933, -0.036427, 0.038065, -0.049754, -0.04747, -0.058368, -0, 0.011307, -0.059764, 0.045637, 0.017938, 6592e-6, -7159e-6, 0.065849, -0.016684, 0.076604, 0.046819, 0.025788, -0.053174, -0.04092, -0.035241, 0.030113, -1988e-6, -0.068062, -0.042067, 0.043791, 0.10872, -0.021095, 0.086279, -6678e-6, 0.061121, 0.046707, -0.016262, 0.010823, -0.035584, 0.016161, -0.044892, 5734e-6, -0.042528, -0.063602, 1692e-6, -0.037709, 2898e-6, 0.014708, -0.053031, -0.091723, 0.044855, 0.105545, 0.077909, -0.057632, -3383e-6, -0.028023, 0.020364, -0.054889, 0.076641, -0.091336, -0.062287, 0.023181, 5409e-6, -0.027459, -0.045991, -0.051461, -0.014342, 0.051927, -0.053489, -0.165006, 0.012824, -56e-6, 0.032699, -0.018543, 0.016615, 0.079125, -0.081643, -0.048327, 3326e-6, -0.012519, -535e-5, -0.043733, 0.061207, 0.01169, -0.038424, 0.08298, 46e-4, -0.048003, -0.071619, 0.01568, -0.049536, -5445e-6, -0.011814, 0.065618, 0.054114, -0.021459, 0.010703, -76e-5, 0.146676, -0.056626, 0.035412, -0.023203, -0.065779, -0.018482, 0.056608, -0.045169, -0, -0.102889, 317e-6, -0.035794, 0.019367, -0.025903, -0.056564, 0.042439, 0.07582, -0.01579, -0.010342, -54e-6, 0.011339, -0.158546, -0.013407, -0.010997, -0.025018, 0.032526, 0.065462, -0.056728, -0.060936, 0.058332, 0.018846, -0.06176, 0.040274, 0.077356, -0.016351, -0.033835, 0.066742, 0.014925, -0.022739, 6853e-6, -0.035058, -0.016294, -5783e-6, 0.038044, 0.037436, 0.025271, -2544e-6, 0.016089, 0.080665, 0.050652, 294e-5, -0.07029, 0.039113, 0.077468, -0.064317, -0.055068, 9306e-6, 0.070109, -0.048493, -7935e-6, -0.044966, -0.041335, 0.012464, -0.021658, 0.042982, 0.066361, 0.042827, -0.033926, -0.041372, 0.141533, -8189e-6, 0.082129, 3907e-6] },
|
|
4810
|
+
{ name: "pipeline_status", category: "diagnostics", tier: 2, descriptionHash: "44d5abd7ea1df8c2", embedding: [-0.017798, -0.019841, -0.059264, 0.015022, -0.041642, -0.092424, -0.045378, 0.022739, -0.081819, 8266e-6, -0.015994, -0.035915, -0.025652, -0.04761, -0.045582, 314e-5, 0.042801, -0.036136, -0.013436, -0.07292, -0.017782, 0.023934, -0.071008, 0.070207, 65e-4, -0.011684, -0.1024, -0.039129, -0.017883, -0.043542, -0.039806, 972e-6, -0.034337, 0.025932, 0.095674, 0.069634, 0.124492, -0.061314, 1147e-6, -0.073834, 0.058351, -0.099124, -0.086603, 0.030407, 0.013732, -0.045261, -0.08966, -0.118524, -0.113372, 0.040828, -0.085664, -0.09133, 3676e-6, 0.096324, 4948e-6, 0.082668, 0.041186, 0.011695, -0.028558, 0.028405, -0.068532, -0.053631, -0.01894, 0.089116, -0.012525, 0.038828, 7805e-6, -0.061366, 0.173179, -0.096405, -0.044713, -0.016393, -0.145209, -0.033378, -0.032226, -4155e-6, 0.070476, -0.041948, -0.036991, -0.058216, -0.104723, -7519e-6, -0.029282, -0.012926, -0.031051, 0.035985, -0.021306, -0.013765, 0.04195, -3208e-6, -0.048203, -0.01611, -2778e-6, 0.040578, -0.026635, 0.023393, 8108e-6, -0.04484, 0.073678, 0.026551, -0.010241, 0.057134, 0.044357, 7164e-6, 6873e-6, -6071e-6, -543e-5, 0.033154, -0.043315, -0.040175, 246e-5, -0.03634, 0.082357, -0.070943, 0.047315, 0.016498, 3927e-6, -0.020657, -0.077332, 0.077521, 0.083212, 0.010821, 0.011173, -0.091667, 0.022796, 0.02804, 0.020505, 0, 0.088269, -0.103419, 0.044321, 0.026945, 0.064588, 0.045518, 0.043721, -0.020607, -0.019604, -0.011867, 0.027965, 0.074062, -0.053378, 0.013228, 0.012513, -0.068923, 0.059634, 0.086958, 0.02292, 0.048694, 0.056775, -0.01488, -0.069916, 0.021133, 0.120458, -0.018265, 6958e-6, -4864e-6, -0.058192, 0.037904, 0.011423, -0.075402, -0.038406, -0.025512, 8365e-6, 5231e-6, -0.031871, 8532e-6, 0.033889, -0.030862, -0.042114, -0.03443, -0.019696, -0.062513, -0.031316, -0.06236, -0.084875, -0.016499, -9376e-6, 0.024176, 0.069403, 3593e-6, 0.034648, 0.023342, 0.039644, -5182e-6, 0.012672, 27e-5, 0.051919, 0.076304, -3167e-6, 0.041933, -0.065822, 0.01565, 5082e-6, -0.029867, 0.018473, -0.028922, 0.080344, 6429e-6, -0.07552, 0.027386, 0.077973, 0.019472, 0.079756, -0.019585, -0.034834, -0.081, -0.013797, 0.023965, -0.020698, -0.023996, -0.047472, 0.018932, 0.044048, 0.034963, -0.081255, -0.014188, -0.082416, -4858e-6, -0.081365, 5904e-6, -4438e-6, -748e-6, 6802e-6, -0, 0.071993, -7987e-6, -0.04982, 0.083137, -0.043056, -7627e-6, 2876e-6, -0.039688, -0.023621, -0.016594, -0.01674, 0.039667, -0.052898, 6453e-6, 0.025574, -7357e-6, -0.050454, -0.084066, 0.042674, 0.117451, -0.012311, 0.025054, -0.117557, 0.080309, -0.056942, 0.0293, -0.084271, -0.017924, -826e-6, -0.030851, 0.026892, -0.015348, -0.03154, -0.017128, -0.03632, -0.013154, 0.017687, 0.046739, 0.032638, -3817e-6, 0.079643, 0.046605, -0.018004, -7683e-6, -0.071414, 0.040522, 0.036504, -0.048726, -0.103293, -0.017891, -447e-5, 0.033271, 6989e-6, 0.131408, 0.038857, 0.028626, -0.037089, 5759e-6, -0.131622, -0.015544, 0.091437, 0.045741, -404e-5, -0.024294, -0.01914, 0.014655, 0.03831, 8292e-6, -0.01974, -0.046148, 0.066071, -0.017769, -0.023787, 0.031901, 0.040585, -0.021489, -0.081109, -0.098156, -0.020874, 0.097041, -0.033358, 5357e-6, -5967e-6, 0.054075, 0.096864, -0.026015, -0.025289, -2632e-6, 0.05178, -0.021775, -9292e-6, -1645e-6, -0.148577, -9082e-6, 2179e-6, -0, 9212e-6, 0.022257, 0.030236, 0.032505, 0.062762, -0.013338, 0.028151, 0.102515, 7492e-6, 0.028591, 0.056764, -0.046427, -0.058981, -8495e-6, 0.109062, 6594e-6, 0.034679, 0.051847, -0.046272, -0.068875, -0.062335, 0.022619, -0.024955, -6481e-6, -0.049087, -0.011105, 0.086575, 0.088865, 7204e-6, -1905e-6, 0.018233, 0.033709, 0.040261, -6696e-6, 0.031114, 0.072918, 0.065825, 0.020905, 0.015345, 0.019766, -0.032567, 0.024886, 0.031395, 0.026277, -5651e-6, 0.036911, -0.063425, 0.01155, -0.010715, -0.029284, -0.011381, -0.01547, 4291e-6, 0.129861, -0.01211, 0.107233, 0.070349, -0.045752, 186e-5, 0.071985, 0.123241, -0.029971, 0.034031, -0.029953] },
|
|
4811
|
+
{ name: "policy", category: "write", tier: 1, descriptionHash: "fcdddf1f5ecb550b", embedding: [-4505e-6, 0.026708, -0.075122, -0.041329, -18e-6, -0.020555, -8137e-6, -0.034545, -0.027467, 0.038306, 0.037495, 0.019821, 0.050805, 4911e-6, 0.076796, 0.026689, -0.056073, 0.101614, -0.057664, -0.090366, 0.058789, -0.028848, 0.016165, 0.026278, -0.067139, -0.051056, -0.026863, 0.051456, -0.029475, -0.02279, 0.043861, -0.057546, 0.015834, 307e-5, 0.074438, 0.096601, -1823e-6, -0.030011, -0.065435, -0.061021, -0.012011, -0.079973, -0.08569, 0.046351, -2992e-6, -0.067776, -0.06471, -0.029819, -0.04202, 0.062743, 0.039041, -0.078219, -2782e-6, 0.017436, 5539e-6, 0.06498, 5504e-6, 0.02754, -1929e-6, -0.083858, 0.022227, 0.027024, -0.097902, 8102e-6, -0.053825, 0.088717, 0.010871, 0.017353, 0.018957, -0.052314, -0.04976, -0.087088, -0.044527, -0.015764, -0.078206, -0.014007, -0.052892, 0.018607, -0.024134, -0.109821, 0.01609, 0.036106, 0.029066, 0.040086, -0.04519, 0.060426, -0.024025, -7913e-6, 0.108152, 0.069388, 0.047792, -0.046102, 0.076281, -0.052557, 0.023054, -3554e-6, -0.02922, -0.107416, -0.03421, 0.01205, -0.035679, -0.060815, -116e-5, 183e-6, 0.097432, -0.021954, 6729e-6, 0.018076, -0.035392, 0.033375, -0.034961, 0.054431, 0.048093, -0.038648, 0.041098, 0.022358, -0.092622, 0.094256, -0.061837, 2937e-6, 0.10306, 0.031169, 0.089514, -0.056331, -0.042958, -0.042459, -0.012938, -0, 0.051233, 0.021133, -0.029491, 0.062164, 0.061783, -0.019256, 0.063902, -0.037748, -0.050917, -8316e-6, 0.077458, 0.064741, -0.059264, 7994e-6, 0.018262, -8302e-6, -0.046588, 0.123828, 0.101552, 0.027218, 0.029152, 0.042366, 0.014796, -0.011818, 0.042014, -3443e-6, -5687e-6, -4585e-6, -0.021485, 0.023324, 0.058604, -0.029529, 0.03057, -0.018013, 0.036329, -938e-5, -0.011672, 0.012386, 4235e-6, -0.036528, 0.019002, -0.071622, 0.055325, -0.032165, 0.023879, -0.033652, 2205e-6, 5912e-6, 0.134917, 7187e-6, 0.043309, 4314e-6, -0.040376, -0.083554, -0.034464, -0.107739, -0.032702, 4105e-6, -0.047781, -0.028332, 0.036785, -0.011062, -0.062824, 0.03422, -0.075312, -0.040985, -0.105326, -0.066829, 0.024746, -631e-5, -0.076129, 0.01668, 9792e-6, 9895e-6, -0.047233, -0.112814, 0.028665, 0.048114, -0.06422, -0.025992, -0.070698, -5229e-6, -0.087213, 0.084216, 0.045376, 0.030821, -3849e-6, 0.055111, -0.016621, -0.052617, -0.084919, -0.090213, 0.065157, 1153e-6, 0.072065, -0, 0.054776, -0.080034, -0.011405, 0.057595, -0.037708, -1861e-6, -0.01302, -0.041232, 526e-5, -9398e-6, -0.081477, 0.058425, 0.029039, -0.019636, -0.020421, -0.060288, -0.085012, -0.041288, -0.020968, 0.034138, -0.013289, 1858e-6, 0.011594, 0.16967, 0.035373, -0.031101, 0.043901, 0.051255, 0.058241, -0.013895, 0.034095, -0.028849, -0.043849, 4644e-6, -0.021081, -0.070306, 0.05501, -0.020629, -0.073775, 0.062679, 0.093098, -0.081328, -0.06762, -0.018797, -0.026719, 0.050842, 0.034543, -0.045311, -0.054826, -0.05085, 0.025938, -0.022302, -0.016815, 0.027139, 0.010653, 0.023873, 0.062967, 2821e-6, 0.023114, 0.031763, 0.0112, 0.046019, 0.038249, 0.07728, -0.021334, -0.053882, -0.016595, 0.047085, -0.073934, 6362e-6, 1279e-6, -0.033478, -0.01506, -0.056147, 0.072546, -0.106656, -0.037809, -0.12467, -3074e-6, 0.044098, 0.012084, 0.056895, -0.041101, 0.032283, 9583e-6, -0.039495, 0.025512, 0.04527, 8878e-6, 0.082551, -0.06296, 903e-6, 6263e-6, 0.033509, -0.038963, -0, -0.081398, 3431e-6, 0.105283, 0.025739, 0.027495, -9408e-6, 274e-6, 0.018282, 0.033669, -0.106959, 0.042012, 0.041847, -0.05431, -0.072443, 673e-5, -0.040462, -0.024969, 0.114754, -0.023641, 5652e-6, -0.046082, 0.014658, 77e-4, -0.069418, -1527e-6, 0.05412, 0.051052, 0.043166, 0.101272, 0.07074, 0.058066, -0.035234, 0.095397, -0.01468, -0.047528, 0.052763, 0.047517, 0.023599, 0.1156, 8817e-6, -6757e-6, 0.013583, 378e-5, 0.025065, -0.062781, 0.010354, -0.073828, -0.011782, 6684e-6, -0.034664, -0.026295, -0.034549, 5815e-6, 0.118332, -3316e-6, 0.030356, 0.061249, -0.076902, 0.113439, 0.030628, 0.059401, -0.016512, 0.081385, -0.018532] },
|
|
4812
|
+
{ name: "predict_stale_notes", category: "temporal", tier: 2, descriptionHash: "35164bde12fddb12", embedding: [-0.064886, -0.060001, -0.010746, 0.045579, 0.056078, 0.040693, -0.040837, 0.026172, -0.018197, 4559e-6, -0.011596, -8226e-6, -0.060431, 0.018414, -371e-5, 0.037549, 0.04235, -0.072699, -9923e-6, -0.081423, 0.035527, 0.027501, 0.031256, 0.025328, 0.020778, 0.029915, -0.077678, 0.013764, -0.012021, -0.058338, -0.062304, 0.098456, 0.017002, -0.013097, -0.061048, 0.062015, -0.033299, -0.028859, 0.027271, -0.030628, -0.012567, -0.012736, -0.020948, 0.057728, 0.018179, -0.069973, -0.011851, -0.070627, -0.114201, 0.03702, -0.06747, -0.083699, -0.028445, 0.058118, 0.012823, 0.066453, 0.022476, 0.06307, -0.04271, -0.072742, -1088e-6, -0.077772, -0.045025, -0.04114, -2508e-6, 0.027608, 0.018841, -0.021756, 789e-5, 2342e-6, -0.030697, 0.042599, -0.012735, -0.031062, 0.052248, -0.015704, 0.01733, -0.067236, -0.028146, -0.120392, -0.076075, -0.027071, -0.012314, -0.028654, 0.042207, -0.064752, 0.051104, -0.03591, -0.069589, 0.027321, 0.046075, -0.012604, 0.045922, 0.027259, 6739e-6, 0.092706, 0.033193, -0.07711, -0.014739, 0.045764, 8682e-6, 0.107564, -3863e-6, 0.047443, 0.061366, -0.022533, -0.013065, 0.052202, -9774e-6, -0.028004, -0.022428, 0.019438, 0.039822, -0.029164, -0.010632, -0.025069, 7067e-6, 0.010829, 0.018916, 0.140258, 0.078168, 0.019208, -0.0324, -0.064025, -0.053051, 0.015909, -0.024197, 0, 0.025315, -0.027939, -0.056519, 0.043387, -0.033915, -0.034061, -0.036499, 0.011854, -0.010444, -0.098487, -0.01059, 0.030515, -0.030639, 0.073611, 0.039433, -0.03879, 753e-6, 0.122829, 0.026041, -8724e-6, 0.033994, 0.028611, -7401e-6, -0.090948, 0.072016, 4804e-6, 0.026042, -0.037302, -0.074261, -2972e-6, -0.020196, 1219e-6, -0.011685, -0.056472, -0.019451, 0.015864, -0.030748, -0.040736, 0.064457, -0.104503, -0.019166, 0.034264, -0.018786, -0.010143, 0.04962, -0.077119, 2493e-6, 0.042725, 0.017832, 0.02639, 0.028579, -0.025856, -0.02708, 0.015191, -0.06125, 9987e-6, 0.065806, -0.042536, -0.054024, -0.024318, 0.103346, -158e-5, -0.033645, -0.040951, -0.028521, 0.089072, -0.03038, -0.042287, 0.045615, -0.024281, 0.011146, 0.033472, 0.053373, 0.010119, -0.030111, -0.012439, -0.041493, -0.063444, 0.079571, -0.051825, 0.015189, -0.063199, -0.105081, 5799e-6, -0.026318, 0.011034, 0.076299, -0.093332, -0.080425, 0.047848, -0.173043, 0.022408, 0.04507, 0.030283, 921e-6, -0, 0.012019, 5353e-6, -0.024437, 0.080513, 0.037143, 0.048868, -0.085896, -0.030268, 945e-6, 0.077259, -0.021284, -0.038813, -0.024822, 7588e-6, 0.028401, 1535e-6, -0.013949, -0.045242, -0.041907, 0.060302, 0.042134, -7015e-6, -0.112808, 0.111599, 0.041784, 0.022965, -0.015704, -0.031277, -0.047514, -0.070576, -0.056573, -0.099661, 4858e-6, -0.05478, 0.034798, 0.016836, 0.024042, -0.119166, -0.10755, 0.111764, 0.10046, 0.093033, -0.040977, 8177e-6, -0.04216, 0.053482, -1761e-6, 0.036008, -0.106968, 8164e-6, 0.071325, 0.027996, -0.037569, -0.012173, -8191e-6, 0.102464, -0.055069, -2139e-6, -0.041035, 0.011094, 0.076794, 0.077959, 886e-6, 1675e-6, 0.061383, -0.073362, 0.016973, -0.066606, -738e-5, 0.078453, 0.020686, 0.023041, 0.027523, -0.050829, 0.055332, -0.038954, -0.025194, -0.019989, -0.010084, -0.064609, -0.026123, 0.028731, 0.039555, 0.019081, 4743e-6, 0.029829, 0.077768, 0.02119, 0.037264, -0.04203, -5246e-6, -0.028079, -0.033784, -946e-5, -0.049268, -0, -0.010631, -8919e-6, -0.029498, 0.079738, 0.010276, -0.057746, -0.012437, 0.073551, 0.03879, 0.088318, 0.10514, -0.034596, -0.092901, -0.060949, 0.063409, 0.018249, 0.063451, 0.032064, -0.073619, -0.090936, -8814e-6, 0.057824, -0.033428, -0.033273, 0.017531, -76e-6, 0.065631, 0.136582, 0.061873, 0.020892, 0.049739, 0.043357, 0.045072, -0.075549, -4159e-6, 0.051554, 0.066614, 1228e-6, 0.042509, 0.122509, 0.04332, 0.056916, -0.051363, 0.086005, 0.053036, -0.060455, -0.021135, -0.036876, 0.022403, -0.068964, -0.02844, -0.046587, -0.031137, 0.039719, 0.010921, 0.06692, 0.065877, 0.03547, -0.025119, -0.019095, 0.166514, -1673e-6, -0.031116, 0.048194] },
|
|
4813
|
+
{ name: "refresh_index", category: "diagnostics", tier: 2, descriptionHash: "643799a8b25bf464", embedding: [0.027859, -0.013386, -0.037085, 0.090216, 0.048335, -0.056832, -0.114564, -0.067812, -877e-5, -0.028232, 8259e-6, 0.074395, -5794e-6, 8899e-6, -0.061405, -0.043111, -0.064483, 0.048361, 0.065263, -0.029483, 0.010121, 0.034056, -4265e-6, -0.065141, -0.065436, -0.033448, -0.128807, -0.016024, -9141e-6, -0.01668, -0.023384, 0.054579, -0.046738, 0.010011, 3378e-6, 0.103791, 0.014686, -8063e-6, -0.027223, -0.058833, 1464e-6, -0.053058, -0.075601, 0.041249, -691e-5, -0.087589, -0.059088, -0.058629, 0.019938, 0.020069, -0.053442, -0.021227, -0.044017, 0.043874, 0.028843, 0.02565, 1078e-6, 0.047358, -0.024843, -0.078653, 0.112387, 0.034013, -0.032713, -0.042126, -9104e-6, 0.051286, 0.12473, -0.037088, 0.086058, -0.050325, 0.034726, 0.040502, -0.092173, -0.02257, 0.040297, 0.058404, -3167e-6, -0.015936, -0.013978, -0.02911, 1612e-6, -0.032717, 0.038648, -0.048305, -0.043094, 0.028253, -0.06786, -0.114154, 0.06229, -0.030799, 0.094135, -0.029441, -0.019506, -0.036656, 0.010577, 688e-5, -0.029214, 0.013694, 0.014777, 0.016876, -0.045272, -0.010946, -0.057247, 0.022808, -0.024967, 0.043241, 0.036641, 0.130026, -0.046538, -0.057745, -2042e-6, -9441e-6, 0.053702, -0.022655, 0.026646, 0.049236, -0.091107, 0.01847, -0.058323, 0.106365, 0.116512, 0.051356, -0.010294, -0.059246, -0.038296, -1217e-6, 0.014352, 0, 0.035127, 0.047751, -0.014409, 0.056811, -209e-6, -0.043272, 0.077923, 5508e-6, -0.044145, 0.023159, 0.030721, 0.041366, -0.0428, -0.066905, 0.018546, -0.04249, 0.053504, 0.090183, 0.076204, -0.072119, 0.020606, 0.066756, 0.018912, -0.084674, 0.075606, 0.076947, -0.035031, -0.039985, -0.016354, -0.012954, 983e-5, 0.028107, 1053e-6, -0.036161, 3219e-6, 0.024653, 0.040721, 0.059579, -0.077236, -0.034263, 0.053616, 0.030955, -0.029064, -0.02027, 0.031455, -0.019201, -0.084757, 0.014111, 0.040425, 0.023025, -0.037092, 0.088944, -0.060853, 0.012795, -0.02161, 0.021725, 0.02886, -0.029607, -0.041873, -0.022751, 0.091299, -0.063632, 0.0107, 0.018992, -0.01239, -0.01753, -0.023863, 0.019125, 0.029291, 0.074365, -0.010354, 0.015211, 0.115708, 0.043387, -9678e-6, -0.112832, -0.079702, -0.027042, -0.022368, -0.025588, 0.026272, -0.061461, -0.057812, 0.029453, 0.074941, 0.022765, -0.01633, -0.017895, 0.032129, -0.070341, -0.019066, 0.025475, 2428e-6, -0.078894, -5505e-6, -0, 576e-6, -0.120767, -0.042083, 0.012041, -0.04417, -0.017132, -0.030005, -7267e-6, -0.073603, 0.054838, 0.052126, 0.066866, -0.017491, -0.028802, -0.094025, 0.092589, -0.029997, -0.060219, 1741e-6, 0.05385, -0.038719, 3765e-6, -0.031106, 0.090782, -0.044195, -9203e-6, 0.030579, 0.01819, 0.039782, -0.042107, 0.09027, -0.041919, -0.016715, 0.015077, 0.083228, 0.013828, 0.016637, -0.113017, -0.109919, 0.085841, 0.063424, 0.078173, -0.025916, -0.03371, -8612e-6, -0.011897, 7666e-6, -0.017763, -5776e-6, -0.085818, 0.096971, -0.065365, 0.019084, -0.073849, 0.039326, 0.058055, -0.020368, 0.066591, -0.037993, 0.032218, 0.084816, 0.082113, -0.107082, 0.03512, 0.032071, -4352e-6, -3275e-6, 0.020238, -0.103948, 0.037903, -0.08128, -0.02605, 0.062683, -0.044532, 0.049728, -0.029444, 2166e-6, 0.029704, -0.022602, 7774e-6, -0.036145, 0.033034, -0.026278, 0.013084, -0.036962, -9748e-6, 8687e-6, 0.140702, -0.050941, 205e-6, -0.05429, -0.073532, -0.027334, 723e-6, 0.078036, -0, -0.064021, 0.082951, -0.012139, 0.043375, 0.101222, -0.024523, -4647e-6, 0.123721, -0.069941, -0.035615, -0.0116, -0.036646, -6329e-6, -0.017672, 0.038605, -0.067507, -0.017066, 0.013123, -5319e-6, -0.105316, -0.038215, 0.059495, 0.048714, -0.087411, 0.016996, -0.011, 0.085773, 0.041353, 0.032231, 0.022936, -0.032114, -0.010325, 0.016515, -0.026394, 0.033187, 0.032571, -0.012564, 0.012617, -4245e-6, 0.070366, 0.033079, 0.069617, 0.044714, 0.015738, -0.026483, -0.02412, -0.025893, 0.039823, 0.084162, -0.07961, -0.053329, -0.049341, -0.029032, 0.042699, 0.079081, 0.015443, 0.052291, 0.03565, 0.021979, -2198e-6, 0.106349, -0.071277, -0.043979, -0.039683] },
|
|
4814
|
+
{ name: "rename_field", category: "schema", tier: 3, descriptionHash: "8f965d96ea3b9e83", embedding: [-0.040119, 1746e-6, -6971e-6, -7909e-6, -0.013704, 0.022385, -0.046313, -0.044391, -5564e-6, 5663e-6, 6789e-6, -0.039181, -0.049903, -0.064884, 0.045062, 0.026428, -489e-6, 0.03059, 7282e-6, 0.057185, 0.037144, 0.026984, -0.010212, 0.036998, 0.089649, 0.024428, -0.055542, 0.017773, -0.10727, -0.078751, 2803e-6, 0.085368, 0.064384, 0.032751, 0.068431, 0.042191, -0.083115, 0.056903, 0.03469, -0.023283, 0.016528, -0.085655, -5504e-6, -8219e-6, -0.016768, -0.096613, 0.026343, -0.033115, 0.01196, 0.055432, -0.019046, -0.079762, -0.073503, 0.055537, 3163e-6, 0.110786, 0.016099, 0.054023, -0.104504, 0.053764, 0.014937, 5156e-6, 0.021116, -0.088454, -7122e-6, 0.039727, 0.027895, -0.02943, 0.054434, -0.012471, 0.077998, 0.094947, 0.013225, -0.023371, -0.025553, 0.045764, -0.052682, 0.053614, -0.056671, -0.084617, 0.02342, 2296e-6, 0.011021, -0.037092, 0.019515, -0.02581, -0.018364, -0.113768, -0.040331, -0.045649, -0.049952, -0.126899, 0.062856, -253e-5, -0.038737, 0.037322, -9188e-6, -0.012537, 0.080552, 0.017224, 0.027033, -8979e-6, 0.068889, 0.046981, 0.012578, -2105e-6, -0.019055, -0.012459, -0.093904, -0.07491, 0.023355, 0.071964, 0.08727, -0.03384, -0.020677, 4222e-6, -0.02984, -0.041725, -0.017222, 0.044977, 0.099809, 0.036608, -3133e-6, 0.023001, -0.068762, 0.038494, -0.020846, 0, 0.036496, 0.049837, -9896e-6, 0.011974, 0.044896, -0.029534, 3295e-6, 0.107628, -0.035937, -0.024746, 0.105329, 0.012308, 0.03998, -0.092689, -0.036576, -0.066872, -0.027922, 0.058945, 0.062896, -0.030047, 8331e-6, 0.033843, -0.071805, 0.050215, -0.012571, 0.057437, -0.026982, -0.068219, 9816e-6, 0.031752, 0.035821, -0.033341, 0.046768, 0.04316, -0.026132, 0.010551, -0.046312, -6397e-6, -4024e-6, -0.076219, 0.031068, 0.058026, -0.020494, 7419e-6, -0.011343, -1858e-6, -0.032886, 0.087705, 0.055638, -0.140126, 0.040747, -0.015605, 0.022771, 0.100179, -2708e-6, -0.026996, -4718e-6, -9084e-6, -0.037293, -0.056622, 0.035009, 0.051789, -0.122403, 0.130056, -0.074754, 0.021008, 0.05542, -0.027292, -0.016569, -2262e-6, 2803e-6, -0.018474, -0.081948, 696e-5, 3343e-6, -0.116972, 0.01407, -8838e-6, -0.026109, -0.042109, -0.069776, 0.055406, -0.040131, 0.024703, -0.025333, 0.015555, 0.023091, -0.121571, -0.06848, -0.070211, -0.019763, -8054e-6, 0.031666, 0.013783, 0.045258, -0, 0.056773, -0.033738, -0.041159, 0.093671, 0.024012, 0.016333, 0.016653, 0.122767, -0.022161, 0.011047, -0.01425, -0.039459, -0.079306, -0.075352, 382e-5, -3274e-6, -0.058237, 0.016091, -0.069239, 0.038517, -5377e-6, 0.040636, 735e-6, 0.058213, 0.068476, -0.051501, 0.012368, -0.014712, 31e-4, -0.019215, -0.032483, -0.029631, -0.049709, -0.018419, -0.030286, 0.042021, 0.060132, -0.014684, -0.039542, 0.103616, 1808e-6, 6876e-6, 367e-6, 842e-6, 612e-5, 0.034563, -0.020168, 0.034078, -6299e-6, -0.012092, -0.036034, -0.092, -0.047155, -0.081144, -0.021917, 0.011294, 0.048236, -0.053744, -0.104548, -1814e-6, 0.062379, 0.068471, 0.015067, 0.083141, 0.060151, -0.052943, -0.087931, 0.036773, -0.020586, -0.021923, -207e-6, 0.017662, -0.022011, 0.065708, 0.015562, 0.03095, -0.033344, 0.011676, -0.027427, -0.04915, 0.038347, -0.048072, 0.084585, -0.017883, -0.070868, 0.030802, 0.051976, 0.099105, -0.065399, 0.073449, -0.03401, -0.025844, 0.105373, -0.017692, -0.027181, -0, -0.0317, -0.039334, -0.012845, 2612e-6, -0.027731, -3742e-6, -0.031059, 0.080143, 0.113968, -0.029203, -0.014248, 0.028183, -0.038547, -0.064997, -0.060438, -0.025005, 0.039354, 0.105712, -0.066308, 2311e-6, 0.013884, 0.073608, -999e-5, -0.051355, 0.083745, -0.066867, -0.016005, 0.026107, 0.030428, 0.021248, 0.010277, -9573e-6, 0.033894, 0.092247, 0.012817, 0.012337, 0.074128, 5249e-6, -5218e-6, 0.148529, -124e-5, 0.032733, -0.149124, -0.019448, 867e-6, -0.08164, -0.013132, 8177e-6, 0.081763, -0.043104, -0.042113, 0.046231, -0.029902, -0.031489, -0.053096, 0.101813, 0.111138, 0.106641, 0.035415, -0.023962, 0.027378, 2405e-6, 0.048438, 0.057032] },
|
|
4815
|
+
{ name: "rename_tag", category: "schema", tier: 3, descriptionHash: "f641637be1dacce1", embedding: [-0.084035, 12e-6, -0.013396, -3819e-6, 0.025305, -0.024402, -0.03555, -0.036163, -5694e-6, 0.028372, 0.024425, -0.01371, -0.026963, -0.019337, 0.045473, 0.055533, -3148e-6, 0.049923, 0.038623, 0.015549, 0.100999, 0.040724, -0.014154, 0.075837, 0.116409, 0.045049, -0.027949, 798e-5, -0.040574, -0.066421, 0.019706, 0.051934, 0.015625, 0.02758, 0.059601, 0.076657, -0.05404, 0.010131, 0.015744, -0.024211, 0.037817, 3223e-6, -0.062749, -0.042913, -0.029605, -0.080587, -0.021548, -0.047553, -0.031076, 0.06008, 0.020323, -0.138485, -0.017967, 0.068104, -1752e-6, 0.089851, -6728e-6, -0.069947, -0.085237, 6719e-6, 0.026218, 0.012117, 3944e-6, -0.065545, 0.013293, 0.050628, 0.027926, 3317e-6, 0.035947, 0.023997, 0.07265, 0.017053, 0.068848, -0.019026, 0.018005, -0.038033, -0.055031, 0.048382, -0.065424, -0.066206, 0.021811, -55e-6, 0.020401, -0.02777, 2535e-6, 5175e-6, 7953e-6, -0.077094, 0.022975, -0.014531, -0.035492, -0.08244, 0.070792, -7612e-6, -0.048429, -0.025023, 0.011723, -646e-6, 0.068011, 0.06419, 9521e-6, 0.032627, 0.027088, -0.028754, -0.015971, 0.027618, -0.019162, 0.017348, -0.064676, -0.063562, 0.014143, 0.046813, 0.076948, -0.037516, -0.017228, -0.067076, 0.020736, -0.046742, -0.015228, 0.019516, 0.079755, 0.041499, 273e-5, -0.015008, -0.08442, 0.034663, -0.096811, 0, 0.07199, 0.013738, -0.027784, 0.061633, 0.023719, -0.02381, 0.025067, 0.04557, -0.090753, -0.027633, 0.121351, -0.01295, 0.033477, -3904e-6, -0.039848, -0.100666, 0.010032, 0.081244, 0.047556, 0.020327, -0.028851, 0.040622, -0.051269, 622e-6, 0.043393, 0.062865, -0.037069, -0.049843, 0.030858, 0.035345, 0.041078, -0.015174, -0.01434, 0.057156, -0.06889, 0.014051, -0.060523, -0.025959, 0.033027, -0.073386, 0.023445, 0.016417, -0.022682, -0.042893, 0.013775, 0.016093, -0.032133, 0.059078, 0.068911, -0.105406, 0.075333, -0.022721, 0.016052, 0.033039, -0.049107, -0.031525, -0.023432, 4188e-6, 0.010424, -0.012278, -0.01491, -37e-4, -0.107916, 0.105215, 1136e-6, 0.052074, 0.092265, 0.020605, -9586e-6, -0.02657, -0.019027, -0.025732, -0.05523, 7833e-6, 0.032266, -0.096616, -0.042816, -0.034575, -0.03837, 0.039317, -0.111069, 0.024011, -0.032248, -6955e-6, 0.031776, -8478e-6, 0.016836, -0.14742, -0.016783, -0.028034, 3578e-6, -6862e-6, -0.010581, -9325e-6, 0.083711, -0, 0.093112, -0.041901, -0.040066, 0.098551, 0.024245, -0.028293, -0.027825, 0.100278, -0.053721, -0.010235, -7581e-6, -0.030002, -0.151689, -0.045065, 0.047891, 0.018256, -0.036612, 0.012121, -0.049221, 0.021089, 0.01113, 0.057963, 0.014422, 0.068273, 0.119823, -0.053115, -0.019083, 0.03297, 0.066038, -0.068028, -0.055152, -7179e-6, -0.045458, -0.055323, 4722e-6, 0.029029, 0.044538, 1651e-6, 0.015866, 0.063383, -0.016267, 0.027157, 0.044288, 6347e-6, 0.016025, 0.037859, -0.032862, -4052e-6, -0.071163, -9275e-6, 0.022274, -0.09451, -0.072451, -0.092776, 0.016137, -0.065336, 0.03076, -0.038878, -0.164619, -0.016408, 0.044504, 0.03212, 0.066875, 0.092495, -0.01557, -0.060248, -0.074632, -0.022551, -0.044375, -6811e-6, -0.012711, 0.059799, -0.067387, 0.05072, 0.012829, -0.037274, -6896e-6, 0.027617, -0.018232, -0.080287, 2338e-6, -0.076919, 0.057324, -0.012734, -0.050673, 0.017977, 0.051191, 0.061152, -0.064442, 0.042422, -0.052892, -0.02208, 0.106485, 0.010242, -0.05649, -0, -0.03083, 0.034234, -0.018075, -3081e-6, -0.074061, 2152e-6, 3402e-6, 0.055736, 0.065127, -0.013175, 0.015734, 0.025175, 847e-5, -0.02892, -0.10743, -0.023757, 0.034394, 0.131028, -0.05104, 8318e-6, -0.012364, 0.112736, -0.023675, 0.021778, 0.084513, -0.065479, -0.021155, 0.030619, 0.039174, 9148e-6, 0.037393, 0.014024, -0.034278, 0.0886, 0.033315, -0.059321, 0.076138, -9013e-6, 0.013943, 0.132713, 0.015129, 0.010924, -0.122336, -8588e-6, -0.013647, -0.087154, -0.090827, -0.036707, 0.04052, -0.036244, 6865e-6, 0.059179, -0.051486, -0.019459, -0.037146, 0.11273, 0.124898, 0.05291, 0.051104, -0.026008, 0.093439, -7664e-6, 0.067387, 0.030767] },
|
|
4816
|
+
{ name: "schema_conventions", category: "schema", tier: 3, descriptionHash: "ee90fd928204cd1d", embedding: [3054e-6, -0.036522, -0.108539, -0.02988, 0.025148, -0.019078, -0.058893, 0.016466, -0.024971, -0.030531, -7093e-6, -0.012574, 0.044053, -0.028329, 0.032633, 0.045189, -1918e-6, -708e-5, 0.016412, 0.010598, 0.018591, -0.012502, -3295e-6, 7091e-6, -2623e-6, 0.021042, -0.06382, 0.02402, -0.030581, -0.021502, -747e-6, 0.122573, 0.098938, 0.019533, 0.016856, 0.031836, 0.033527, 0.042074, -0.026066, -0.019689, -0.072893, -0.072935, -0.015365, 0.081408, -0.031752, -0.029328, -0.015623, 6195e-6, -0.109811, 0.081849, 4069e-6, -0.050908, -0.046423, 0.07996, -2948e-6, 0.084154, -0.03304, 0.040847, -0.046725, -0.030807, 0.021458, 0.032533, -0.08751, 0.025991, 0.056072, 0.075745, 0.034527, 0.015147, 0.094612, -0.04112, -0.018706, -3027e-6, -0.088696, 0.020809, -0.015436, 0.059465, -9273e-6, 9418e-6, -0.072363, -0.158326, -0.018988, 0.06256, 6875e-6, 0.07217, 3694e-6, 0.012021, -0.028351, -0.043706, -2954e-6, 0.033408, 0.026997, -0.128655, 0.031464, -0.053451, -0.038744, 0.078846, -0.017049, -0.064241, 0.057165, 0.033402, 0.029295, -135e-5, 0.037764, -0.057146, 0.03494, 0.037173, 0.01238, -9787e-6, -0.018645, 0.022848, -0.023878, 0.039797, -0.04063, -0.122252, 0.045167, 0.0182, -0.059749, -0.037997, 0.015596, -3565e-6, 0.066493, 4529e-6, 0.074534, -0.096481, -0.02293, 0.03668, -0.109175, 0, 0.034483, 0.064823, 4632e-6, 0.078947, 0.032342, -1557e-6, 7544e-6, 0.034039, -0.053653, 0.034019, 0.077641, 0.106518, -0.054711, -0.07855, 0.06298, 0.060359, -9739e-6, 0.064619, 0.026203, -0.013753, 0.046758, 0.056941, -0.044788, 0.029974, 0.091087, 0.016748, -0.036262, 5679e-6, 0.011887, 0.030296, 0.077297, -0.026196, 0.087301, -0.014579, 0.015204, 0.06045, -0.028888, -0.030898, 0.030606, -0.052768, 0.027586, 6557e-6, -0.039813, -0.010589, 0.031017, 3642e-6, 0.010431, -0.046404, 0.043194, 2024e-6, 0.035664, 5147e-6, 0.034811, 0.074353, 0.030109, -0.036807, -0.018647, -0.033376, 0.010286, 0.019279, 0.024033, 9741e-6, -0.018806, 0.030045, -0.101907, -0.02219, -0.047185, -0.065247, 0.059884, 0.04225, -0.045312, 0.098152, -0.110518, 0.071904, -0.05315, -0.095339, -0.04831, -5252e-6, -0.02912, -0.060713, -0.096089, 697e-6, -0.026259, 0.084707, -0.091625, 0.029706, 0.06696, -0.035413, -0.085985, -0.055732, 0.041315, -0.015867, -9943e-6, -0.01378, 0.034521, -0, 0.020479, -0.053468, -0.010485, 0.089532, -652e-5, -339e-5, -4256e-6, -0.011868, 0.029578, 2029e-6, -534e-5, -4814e-6, -0.011356, -0.056964, 0.049002, -0.013721, -0.039349, -0.1212, 0.013152, 0.062337, 0.033625, 1183e-6, -0.126198, 0.06795, 0.043095, -0.019874, -0.050039, -0.067684, 8972e-6, -0.049263, -0.059074, -0.018211, 0.045188, -0.019492, -0.05628, -0.062954, -0.013863, -0.017696, -0.051198, 0.048313, -0.026226, 0.043683, -0.092092, 0.022601, -0.066481, -4526e-6, -0.054714, 0.033691, 0.035662, -0.07238, 0.017059, -0.082465, -0.017297, -0.11282, 0.035063, 0.135396, -3852e-6, 9947e-6, -0.029011, 0.063685, 0.038342, 0.069568, -0.010596, 0.027996, -6662e-6, -0.105679, -0.039784, 0.026535, -0.104419, -0.010081, -5598e-6, -0.063263, -0.030519, 0.026263, 0.036444, -0.058046, 0.032903, -0.036089, 0.02686, -0.013518, -0.040455, 0.041533, 0.027505, 0.108617, 1246e-6, 0.021059, 0.03538, 0.085555, -0.028863, 0.021811, -0.047247, 8445e-6, -0.037755, 0.023426, -2443e-6, -0, -0.06962, -0.018862, 0.02028, 0.023941, -0.020366, 0.016232, 0.0357, 0.114765, 0.017649, 0.019703, -284e-5, 0.031238, -0.128753, -0.053691, 0.027875, 0.019441, 9467e-6, 0.027267, -0.122893, 0.038608, 1551e-6, 0.06424, -0.020666, -0.067029, 0.062014, 0.039799, -0.021574, 0.10168, 0.057358, 0.025736, 0.028538, -0.053214, 0.028854, -0.039382, -0.041326, 0.113099, 0.014502, 0.02465, 0.046209, 0.032624, 0.04342, -0.106846, -0.025775, 0.025041, -0.014052, 0.046022, -0.018137, 0.080717, -0.021579, -0.099599, -0.101554, -0.049272, -9736e-6, 0.059668, 0.037994, 0.059894, 0.034122, 0.048896, 0.094831, -0.082206, 0.087029, 0.045032, -0.027378, 0.046575] },
|
|
4817
|
+
{ name: "schema_validate", category: "schema", tier: 3, descriptionHash: "68459502011b6f9d", embedding: [8489e-6, -9488e-6, -0.043878, 181e-6, 0.060247, -0.011407, -0.08915, -0.022667, -0.060986, -0.018762, 0.02438, -0.098749, 0.019138, 7108e-6, 0.071586, 0.026641, 0.021651, -0.043304, -1458e-6, 0.013386, -0.022534, -0.014463, -0.034698, 0.066916, 146e-6, 0.013154, -0.096984, -0.023378, -0.034199, -0.018754, 5028e-6, 0.062348, 0.074602, 0.023689, 0.092111, 0.063149, 0.05733, -9653e-6, 2512e-6, -0.023467, -0.080384, -0.057046, -3353e-6, 0.033841, -0.030473, -0.092706, 0.031529, -0.054006, -0.079454, 0.017709, -0.036361, -0.040633, -0.054643, 0.043096, -377e-5, 0.101458, -0.025906, 0.034991, -0.052235, -0.031669, 0.039764, -0.034771, -0.014985, -0.023419, -0.033256, 0.061804, -0.027878, -0.058517, 0.065356, 0.019292, 0.02872, -0.015153, -0.099878, 0.024085, 153e-5, 0.017804, 0.024562, -0.012621, 7418e-6, -0.167424, -0.08586, 0.063191, 224e-6, 0.049245, -8943e-6, 6252e-6, -0.052016, -0.021072, -0.067726, 0.039353, 0.081278, -0.099571, -0.01522, 0.032674, 0.015624, 0.037709, -0.047727, -0.087245, 0.113979, 0.052556, 0.017738, -0.021367, 0.054773, 0.016389, 0.02762, 0.096853, 0.038504, -0.012638, -0.100012, 0.031526, 0.027146, 0.018723, 0.064678, -0.095534, 0.017345, 0.039063, -0.016944, -0.040205, -0.027507, 0.022618, 0.054703, 0.025977, 0.143186, -0.057395, 0.028812, -0.047256, -0.03855, 0, 0.023765, 0.070902, 0.017383, 0.022676, -5348e-6, 0.041423, 0.023882, 0.028274, -0.030179, 0.027789, 0.041689, 0.078996, -0.044724, -0.104371, 0.086701, 0.034111, -0.028405, 0.03893, 0.012213, -0.011288, 0.04777, -0.062984, -0.058796, 0.073461, 3908e-6, 0.046545, -0.020936, -2058e-6, 0.021121, 0.03662, 0.043519, -0.016279, 0.118534, 6819e-6, -0.020188, 0.065966, -0.074782, -0.030324, 0.020758, -0.0896, 5356e-6, 5046e-6, 0.019822, 8032e-6, 0.012698, -0.041703, -0.046772, 0.024907, 0.058272, 0.011875, 0.010437, 2866e-6, 0.069916, 0.085275, 8673e-6, -0.024805, -638e-5, 0.020721, -2002e-6, -889e-6, 0.071864, 0.027697, -0.118705, 0.035346, -0.104479, -3786e-6, -0.065323, -0.100883, 0.029164, -0.020246, -0.033286, 0.061782, -0.090925, 0.094299, -0.050786, -0.150686, -0.036623, -0.013038, 1474e-6, -0.051733, -0.080311, 2406e-6, -0.0521, 0.075258, -0.040479, -0.017235, 0.030556, -0.040199, -0.055027, -6215e-6, -0.035362, -0.049295, -327e-6, 4042e-6, 8971e-6, -0, -1046e-6, 0.013958, 8437e-6, 0.061195, -0.020891, 0.052359, 0.02773, -7074e-6, 0.025666, 0.036982, 497e-6, -0.010119, 0.038539, -0.043551, -0.03409, -0.024859, -0.097484, -0.100031, 0.043478, 0.05755, 0.060123, 0.062154, -0.066038, 0.143249, 0.025374, -9007e-6, -0.082462, -0.076323, -0.014353, -3609e-6, 0.023694, -0.019864, 5626e-6, -0.016238, -0.028741, -0.077598, -0.018199, 0.014202, -0.052709, 0.037099, 0.023769, 0.047015, -0.069304, 0.032237, -0.046449, 0.029255, -5939e-6, 2435e-6, -0.038942, -0.055703, -0.027665, -0.059045, 0.045033, -0.054687, 0.035457, 0.113508, -105e-5, 4482e-6, -0.049718, 0.045547, 0.021392, 0.058483, -2867e-6, 0.047182, 0.050609, -0.06301, -0.059552, 0.055492, 0.023502, -1914e-6, -0.02381, 5807e-6, 0.014862, 0.029849, 0.084943, -8736e-6, -0.080389, 2468e-6, 0.046802, -0.038375, 0.022939, -0.016987, 0.094334, 0.075581, 0.01549, -0.044889, 0.035607, 0.010784, -0.042965, 0.055503, -0.012499, 0.024491, 0.010886, -0.015413, 1668e-6, -0, -0.071116, -0.055224, -0.015819, -0.025491, -6155e-6, -0.024157, 0.045047, -0.023359, 5163e-6, 4534e-6, 7422e-6, -0.025447, -0.112568, -0.078274, 0.013949, -3316e-6, 0.047081, 0.066935, -0.093735, 0.012073, 0.010247, 0.049262, -0.015794, 0.015867, 0.073277, 6868e-6, -0.043517, 0.057647, 0.014463, 0.017751, 0.045213, -0.058848, 0.05395, -0.0296, -0.029843, 0.144051, 447e-6, 0.036797, 0.020171, 0.063044, 0.018257, 0.028408, -0.056551, -0.02046, 0.044873, -0.02159, -0.056612, 0.050675, -0.017825, -0.108023, -0.115006, -0.019865, -0.055503, 0.050176, -0.091602, 0.057408, 0.057222, 0.13151, 0.047238, -0.076822, 0.111276, 0.081014, 0.05314, 9056e-6] },
|
|
4818
|
+
{ name: "search", category: "search", tier: 1, descriptionHash: "a4be37e7fefe1d53", embedding: [-0.051845, 0.020148, -0.046093, 0.066989, 0.092374, 0.022237, -0.042288, 0.047585, 0.029967, -0.025676, -0.026941, 9925e-6, 0.032198, -0.019789, 0.027396, 0.05249, 0.019766, -2218e-6, -7661e-6, -0.048723, 0.057036, 0.034625, 0.080822, -0.048686, -0.027982, 0.041164, -0.11329, -0.023996, -2231e-6, -0.012624, 0.042036, 0.107875, 0.022883, 0.090247, -8681e-6, 0.093346, -0.04633, 0.01195, 3851e-6, -0.073264, -0.063991, -0.021879, -0.038715, 0.030457, 0.061345, -0.053332, -0.04544, -0.079336, -0.01045, 0.025744, -0.088969, -0.036852, -0.058761, 0.047837, 0.032656, 0.058772, -0.030404, -992e-5, -0.079509, -0.073745, 0.030029, -0.103642, -1439e-6, -0.039537, 5658e-6, -0.03133, 0.038659, 0.035411, 0.052175, -0.070839, 0.060199, 0.025027, -474e-5, 0.024899, 0.061241, 0.051026, -427e-6, -0.022254, -0.012014, -0.094644, -0.042323, -0.032676, 7197e-6, 0.014444, 0.051864, -2699e-6, 0.031291, -0.068509, -0.012365, -5583e-6, 0.068736, -0.09858, 0.042772, -0.054789, 0.020537, 0.011268, 0.016146, -0.102768, 0.071537, 0.029362, 0.051893, 0.079775, 0.065885, 0.015467, -0.040702, 0.034915, -0.01691, 0.09963, -0.040898, -0.044493, -0.048847, 0.071804, 0.037458, -0.050723, -9108e-6, -0.06267, 0.013362, -0.031075, 0.086685, 0.100114, 0.053186, 0.081847, -0.015166, -324e-5, -0.041591, 0.011416, -0.05577, 0, 0.118138, 0.048903, -0.026002, 0.013588, -0.085427, 0.031643, 0.025602, 0.092027, -0.056228, 0.023147, -77e-4, 0.054318, -0.01812, 0.045972, 0.037994, -0.021132, -0.103413, 0.085992, -0.012477, -9484e-6, -0.020894, 5394e-6, 0.016928, -0.033029, 0.087567, -6285e-6, -0.013075, -0.067925, -0.077003, 9002e-6, -0.081991, -0.035684, -2096e-6, -0.023965, 0.050729, 0.072043, -0.045586, -0.03121, -0.036396, -0.090909, -0.033007, 0.029224, 0.038434, -0.062295, -0.080298, -0.026361, -0.068497, 0.012254, 0.059674, 4977e-6, 0.035316, 0.037511, -0.067043, -0.0305, 0.041643, -634e-5, 0.043248, 0.011498, -846e-5, 0.03993, 0.053323, -0.022474, -0.027292, 0.037799, -0.058913, 0.095584, 5836e-6, 0.027166, 0.126296, 0.058245, -0.011343, 0.038249, 0.040138, -0.037219, 1464e-6, -0.048841, -0.047419, -0.03714, 4854e-6, -1998e-6, 0.023979, -0.041395, -0.018901, 0.035953, 0.012224, 0.019758, 0.064701, -0.126187, -0.019788, -0.105734, -0.017854, 4133e-6, -1599e-6, -0.043635, -0.012833, -0, -8447e-6, -0.090384, 15e-4, 0.018174, -0.030147, -0.028544, -0.016757, -0.014255, -0.015186, 0.053096, 0.027507, -0.014778, -0.013372, -0.057078, -0.082115, 0.030172, -0.046747, -0.074492, -0.010337, 0.09209, -0.028882, 0.028589, -0.06765, 0.067104, 5592e-6, 0.033471, -0.0102, -0.062416, 0.039272, -0.039736, 0.023434, -0.082186, -0.083707, -0.038413, -0.052075, -0.052208, -0.013969, -0.048368, -0.062906, 0.069176, 0.059099, 0.069274, -0.012668, 8196e-6, -0.048413, -0.023648, -0.076538, 0.083344, -6597e-6, -0.039448, 0.0266, -8604e-6, -0.029445, -0.018258, 0.011219, -8528e-6, 8204e-6, 0.035317, -0.065025, 0.013217, 0.028652, 0.099332, -0.032156, 0.029377, 0.038452, -0.045503, 254e-5, 0.011701, -0.125134, -0.014475, -9976e-6, -0.028175, 0.073017, -0.049282, 0.054249, 0.047288, 0.026325, -0.046866, 1858e-6, -0.011774, -0.061699, 0.022677, 0.040096, 0.106371, 0.015846, 0.021233, -0.033299, 0.071998, -1039e-6, -0.0443, 4103e-6, -0.086535, -0.048231, 0.053085, 725e-6, -0, -0.085734, 0.048268, -0.08821, 0.023404, 0.017194, -0.027409, 0.032105, 0.093608, -0.015343, -2385e-6, 0.055786, -0.027017, -0.148453, -0.061183, 0.062177, 0.017004, 0.037304, -0.010405, -0.040446, -0.074229, -4487e-6, 0.051182, -0.035187, 0.011545, 0.061642, 0.045393, -402e-5, 0.115222, 0.098359, 2511e-6, 0.036807, 2203e-6, -0.046125, -0.042369, 0.081854, 0.036223, 0.064529, -0.035153, -0.037044, 0.098015, 0.097642, 6696e-6, -0.015364, 0.08413, 0.04144, -2836e-6, -0.01292, -0.073018, 0.037228, -0.056645, -0.031039, -0.092659, -0.022323, 0.044034, -8185e-6, 0.048279, 0.031253, 0.012438, 0.020184, -0.047476, 0.157234, -0.046307, 0.041941, 0.094218] },
|
|
4819
|
+
{ name: "semantic_analysis", category: "graph", tier: 2, descriptionHash: "cc0b233165afe24f", embedding: [-0.021908, -0.015106, -0.045527, 8173e-6, 0.033522, -5738e-6, -0.035113, -0.010431, 7161e-6, -3999e-6, 0.025973, -0.015142, 0.065362, 0.092554, -2076e-6, 0.10395, 0.040056, 0.030159, -0.010832, -0.073877, -6048e-6, 9078e-6, 0.058065, 0.019456, 0.018945, 0.053797, -0.077357, 1394e-6, 0.058277, -48e-6, 0.012197, 0.100572, -0.017261, 0.042388, 0.03144, 0.131137, 0.018284, 0.024272, 0.029563, -5759e-6, -0.047827, 0.014174, -0.035888, 0.023919, 0.017481, -0.010177, -0.133993, 7668e-6, -0.076011, 0.066582, -0.070751, 0.010446, -0.046131, 0.027502, 0.033105, 0.056119, 6508e-6, -0.019351, -0.047853, -0.107539, 0.08322, -0.053683, 6552e-6, -9442e-6, -0.050069, 0.057425, 0.058902, 0.107951, 0.036135, -0.022633, 0.022237, 0.025588, 9792e-6, 0.040374, -6638e-6, 0.042926, -8546e-6, 324e-6, -0.076344, -0.164821, -0.019329, -0.024835, 0.043469, 0.053668, -2446e-6, -4155e-6, 0.015213, -0.081542, -0.051039, 0.04529, 0.015902, -434e-5, 0.035948, -0.052691, 0.062136, -0.011337, 0.014369, -0.079204, 0.049935, 0.03844, 0.040416, 0.091813, 0.065046, -0.015697, 1789e-6, 5426e-6, -0.052285, -0.017677, 0.038111, -0.062377, -0.010242, 0.051958, -206e-5, -46e-6, 887e-6, -0.073027, 0.070088, -0.0387, 0.077802, 0.033018, 0.04951, 7877e-6, 0.025507, -1177e-6, -0.048381, -9912e-6, -0.09598, 0, 0.045098, -9407e-6, -0.03031, -0.052815, 0.035378, -0.038623, -0.078922, 0.012849, -0.093494, -0.066655, -0.064777, 0.066567, 0.015421, 0.010701, -0.010392, 0.015405, -0.055622, 0.068607, -0.031104, -0.070628, -0.026263, 0.030152, 0.02326, 0.011338, 0.012905, -0.011103, 0.018616, -0.133248, 0.027705, -0.01128, -0.051061, -997e-6, 0.059723, -3682e-6, -0.018343, 248e-5, 0.021249, -0.073288, -0.010128, -0.074474, -0.013606, -8791e-6, 0.047857, -0.113555, 0.034106, 0.062301, -0.037926, -0.020196, 0.095203, -0.063446, 0.022608, -0.019146, -0.016015, 0.083992, 193e-5, -0.062864, 0.030796, 0.017188, 0.053875, 0.019679, 2178e-6, -5355e-6, 0.010403, 0.021151, -0.082045, 3757e-6, -0.048777, 0.052385, 0.083355, 0.04248, -0.063576, 0.087159, -0.015831, 0.015768, -0.049268, -0.070894, -0.056378, -0.030383, -0.024363, 0.017517, -0.08128, -0.134623, -8021e-6, -0.013039, -0.031078, 7729e-6, 0.050449, -0.146539, -0.013994, -0.076661, -0.074974, 0.028795, 4512e-6, -4335e-6, 0.035433, -0, 0.030994, 0.019404, 0.05243, 0.04466, 0.027601, 0.021089, -5834e-6, -0.01952, -6882e-6, 0.069859, -0.059152, -0.018957, 6725e-6, -0.060127, -8657e-6, -5321e-6, 7339e-6, -0.010129, 0.021904, 0.119133, -9419e-6, -0.016307, -0.064922, 0.086175, 0.109368, 0.050829, -2686e-6, -0.098583, 0.032381, -0.050178, -0.021201, -5238e-6, -0.037377, -0.072432, -0.042468, 0.011871, 0.069686, -0.073184, -0.109026, -0.012155, 0.054793, 0.05591, -0.10369, -9036e-6, -3302e-6, 0.016925, -0.114699, 0.051968, -0.102835, -0.041461, 0.033032, -0.019917, 0.036532, -0.045709, -7575e-6, -0.016006, 0.061941, 0.035206, -0.113128, 0.023031, 0.018979, -0.019129, -0.037812, 0.04333, 8615e-6, -0.107909, 0.012391, 0.02756, -0.144573, 0.065292, -4036e-6, 0.051182, 0.017169, -7211e-6, 0.089449, 267e-6, -7568e-6, -0.030152, 0.011024, -0.067915, -0.010022, -4741e-6, 0.087263, 0.066996, -5796e-6, 0.039391, 0.010365, 0.072765, -1197e-6, 0.026805, -0.058153, -0.075196, -0.017918, 0.042432, 9888e-6, -0, -0.088545, -0.021231, -0.042623, -0.02025, -6918e-6, -0.070582, 0.023434, 0.129964, -0.053307, 0.048943, 0.050659, -0.019313, -0.107343, 0.01269, -0.083083, 0.029199, -9602e-6, -0.018549, 1213e-6, -4878e-6, -2794e-6, 0.061211, -9569e-6, 0.050804, 0.046789, -0.042427, -0.036594, 0.086942, 0.058062, -0.052421, -0.034762, -0.021159, 0.015096, -0.055543, 0.0216, 0.078734, 0.034514, 8352e-6, -0.037123, 0.069326, 4361e-6, 0.01732, -0.040775, -4695e-6, 0.124844, 457e-5, -0.033111, 0.057807, 0.031233, -0.03034, -0.042211, -0.03597, -0.044409, -1029e-6, 9711e-6, 0.041018, -0.043385, 0.071019, 0.102219, -0.033648, 0.104184, 0.012865, 0.063847, -6035e-6] },
|
|
4820
|
+
{ name: "server_log", category: "diagnostics", tier: 2, descriptionHash: "6958ec66f8afc9d9", embedding: [-6849e-6, 8374e-6, -0.028525, 0.022338, 0.017493, -0.062385, 9465e-6, 9387e-6, 0.023204, -7735e-6, -0.016669, -0.034813, 3429e-6, -1486e-6, -0.018115, -0.026753, 0.013641, -0.035541, 0.064878, -0.059393, 0.03548, -649e-5, -0.106968, 0.072552, 1419e-6, -0.025075, -0.061473, 5921e-6, 632e-5, -0.021537, -0.045609, 1876e-6, -0.061004, 0.11469, -0.037757, 0.024227, 0.145363, -0.037321, 553e-5, -0.090484, 0.063836, -0.042648, -0.013186, 4672e-6, -0.036621, 0.012598, -0.052689, -0.091288, -0.094739, -6988e-6, -0.021633, -0.030734, 0.047157, 0.024052, 0.050446, 0.06208, -0.014756, -0.02316, -0.03951, 0.025033, -0.053459, -8836e-6, -0.063246, 0.048299, 0.021517, -3289e-6, 0.045057, -0.037193, 0.088689, -0.041413, -0.074212, -0.040746, -0.065637, -0.050838, -0.029133, -1875e-6, 0.022109, -0.010731, -0.029084, -0.122608, -0.073745, 0.051861, -0.0396, 0.094402, -3169e-6, -0.026926, 4765e-6, 0.020399, 0.019053, 0.043435, 0.01061, 0.049057, -0.059651, 0.035438, -0.011229, 0.067077, -0.051455, -0.013269, 0.120185, 0.043326, 26e-6, 0.077442, 0.015981, 0.010087, 432e-5, -0.046095, 0.020944, 0.032098, 0.02344, 0.019814, -8081e-6, 0.031167, 0.054644, 4466e-6, 0.089346, 0.03394, -0.022017, -0.018579, -0.064522, 0.065697, 0.134568, -0.01557, -1311e-6, -0.048263, 0.046803, 0.027883, 0.034385, 0, 0.107242, 0.033705, 0.023725, 0.072784, -0.014488, 0.083825, -0.033507, -0.032056, 0.045686, 0.016479, -0.028335, 0.110418, -0.016275, -0.013614, 0.083777, -8301e-6, 0.056744, 0.065513, 0.070035, -0.030773, 0.018312, -0.070212, -0.034216, 0.023029, 0.120044, 0.021224, -0.012331, -0.052559, -0.059634, 0.028842, 0.084906, -0.086888, -0.113823, -0.041093, 0.088576, -0.012698, 874e-6, 0.012266, -0.040797, -0.043418, -0.0611, -0.049913, -0.044155, -0.022026, -0.077654, -0.105854, -0.154336, 627e-6, 0.037244, -1903e-6, 0.039143, 0.015573, 0.08403, -0.026748, 0.02756, 0.064339, 0.070038, -0.045608, -6247e-6, 0.082602, 0.06055, -0.074133, -0.052468, -0.047715, -7053e-6, -0.018448, 0.029873, -0.028137, 7708e-6, 0.05348, -6754e-6, -0.027131, 0.109686, 0.012515, 0.017894, 0.010684, -0.05957, -0.044818, -0.027045, 0.026883, -0.021754, -0.03322, -0.020066, -941e-5, -5158e-6, -0.042373, 0.020043, -1862e-6, -0.082755, 14e-4, -0.120035, -0.019529, 0.022089, 0.036205, -0.023121, -0, 4623e-6, 0.010081, 0.048478, -0.022031, 9234e-6, -0.039457, 0.014806, 0.058243, -0.061644, 0.089933, 0.057524, -0.027103, -0.041653, -0.013479, 8709e-6, 0.051929, -0.070058, -0.073169, 0.038662, 0.061222, -0.026223, 0.043634, -0.054102, 0.027208, 6134e-6, 0.037213, 4066e-6, 0.017431, -0.056473, -0.073366, 0.063478, -0.041644, 8264e-6, -5915e-6, 0.013634, 0.038253, 0.030183, -0.07682, -0.027493, -8306e-6, 0.087775, 0.029615, -0.025849, -0.013119, -0.060237, 6858e-6, -0.025147, 0.028525, -0.033768, -0.059838, 0.026181, -0.01875, 0.098208, 0.086695, 0.031008, 0.07225, -0.090976, 9456e-6, -0.05564, -0.050403, 0.048942, 0.020986, -0.025647, 0.052024, -0.069081, -0.068655, 0.04159, -0.036571, -0.061437, -0.010933, 0.01104, -0.01394, -0.077306, 3655e-6, -0.028449, 3579e-6, -0.029763, -0.076261, -0.06187, 0.028088, -0.031829, -0.040909, -0.068623, 0.032294, -0.022387, -0.103886, 0.028208, 0.093006, 0.030746, -0.086001, -0.053508, -0.029904, -0.133256, 0.04987, 0.016758, -0, -0.05924, -0.057097, 0.087234, -4053e-6, 0.056608, 0.021369, 0.020707, 0.071119, -0.040003, 0.010379, 7952e-6, -0.07728, -0.04314, -0.100527, 0.062113, 0.019077, 0.01884, 0.055447, -0.045458, -0.05203, -0.037702, 0.010013, 0.011046, -0.046548, -0.077977, -0.021479, 0.039688, 0.065378, -2962e-6, -0.019464, 0.027635, 0.096343, 0.078973, -0.06085, -0.023705, 0.109688, -0.021564, -0.023918, 0.02274, 0.04439, 0.02114, 0.016779, 0.052604, 0.049478, 0.020697, 0.01123, -0.063701, 0.05766, 0.046679, -0.079104, -0.022377, -0.029049, -1249e-6, 0.097128, -0.088361, 0.053415, 0.067341, -0.065241, 0.08646, 0.016418, 0.096084, 0.049106, 5166e-6, -0.042776] },
|
|
4821
|
+
{ name: "suggest_entity_aliases", category: "wikilinks", tier: 2, descriptionHash: "77e66cd582bd1db5", embedding: [-0.088097, -0.024202, -0.018291, -0.014549, 4941e-6, -0.017998, 0.019119, 0.081389, 0.016021, -0.03916, 498e-5, -0.083539, 0.080586, -32e-5, 0.050107, 0.066076, -0.030933, 0.097337, 0.011171, -0.079063, 0.050633, 0.067593, 716e-6, 114e-6, -0.029141, -0.098951, -0.059051, 0.056476, 0.011937, -0.04421, 0.039194, 0.137301, -0.052482, 0.031302, 3795e-6, 0.05152, -0.030951, 0.099938, 0.041158, -0.051302, -0.059696, -0.042933, -0.038073, 0.051155, -0.069734, -0.051754, -3193e-6, 5782e-6, -0.115642, 0.094995, -0.07111, -0.10437, -0.025884, 0.062674, -0.037625, -814e-5, -0.097688, 0.038335, -0.010028, -0.021713, -0.041557, -0.022117, -0.010889, -0.03616, -0.052193, 0.066233, 0.058536, 0.066164, 0.038824, -0.043603, -0.025967, -0.0489, -0.094746, 0.057521, 2885e-6, 0.024942, -0.013854, 3294e-6, -0.054154, -0.09542, -0.036679, 0.133728, 0.032106, -0.012192, -0.017632, 0.035246, 71e-4, -0.016686, 0.012021, 0.014165, 0.014517, -0.124267, 0.128476, -0.03464, 0.015834, 0.055011, 0.038512, -0.107361, 0.065066, 0.049099, -0.062834, 0.032702, -0.058298, -0.015338, -1562e-6, -0.010915, 0.052164, -441e-6, 0.038279, 0.017029, -0.049974, 0.05943, -0.045003, -0.122494, 0.040674, 7825e-6, -0.013429, -0.038186, 0.054171, -0.037713, 0.024478, -0.01374, 0.017528, -0.050727, -0.034681, -3008e-6, -0.042, 0, 0.077283, 0.132656, 0.028376, 0.069524, 0.020558, -0.031843, -8105e-6, 1224e-6, -0.089042, 5687e-6, 7701e-6, 0.05833, -0.017525, -0.01547, 0.036189, -0.026301, 0.023546, 0.138412, 0.022798, -0.024444, -6652e-6, 0.091849, -3165e-6, -0.038126, 0.06269, -0.013631, -0.034773, -0.017639, 0.050016, 0.019338, 2506e-6, -0.025436, -0.03098, 0.046298, 0.01655, 0.059009, -0.031121, -0.048009, -6484e-6, -0.039654, 0.055509, -0.011554, 0.037488, 5214e-6, 0.034431, 4022e-6, 5911e-6, -8056e-6, 0.043684, -0.01595, 0.047146, 0.014828, -0.036144, 0.039237, -0.014863, -0.030465, -0.068491, -2504e-6, 0.053379, 0.027819, -0.01077, -0.013165, -0.087175, -0.014623, -0.055123, -0.056206, -0.047051, -0.070193, 0.120686, 674e-5, 0.04426, 0.024997, -3578e-6, 0.010801, -0.049863, -0.062223, -0.036453, -4174e-6, -0.023664, 5157e-6, -0.089236, -0.07656, -0.08088, 0.015374, 0.08271, -8933e-6, 0.042153, -0.052555, -0.071507, -0.113213, -0.078777, 0.023368, 0.029789, 805e-5, 0.013841, -0, 0.095869, -0.060858, 0.01721, 0.078083, -0.013143, -0.028574, 0.016272, -0.012345, -0.121619, -0.045826, -0.066562, -0.016261, -139e-5, -0.035723, -0.026224, -0.064509, -0.019145, -0.062891, 0.034476, 0.12663, 0.016715, -0.063533, -0.034969, 0.107561, 0.048368, 0.042237, 0.037216, 0.028951, -0.015437, 2849e-6, -0.026102, 0.028999, -0.052815, -0.08551, -0.024511, -0.128701, -0.024541, -0.02784, -0.081474, 3303e-6, 0.059069, 0.018889, -0.039516, 0.018764, -0.064627, -0.050916, 3544e-6, 0.052069, 0.039217, -0.074567, 0.042143, -3204e-6, -0.084917, -0.028268, 0.019376, 0.059827, -0.014896, 0.039439, 0.047714, 0.014608, 0.04228, 0.025229, 0.026198, 0.068672, 0.051184, -0.144528, -0.04611, 0.039436, -0.072443, -0.019033, 9145e-6, -0.046898, 0.03989, -0.063108, 0.065065, -0.103444, 0.087874, -0.070111, 0.049224, -0.022095, 8772e-6, 0.025503, -4372e-6, 0.04371, 1116e-6, -0.032896, 0.010745, 0.124047, -0.011605, -2523e-6, 7436e-6, -0.014178, 0.027299, 0.059872, -0.054487, -0, -5817e-6, 0.044886, 0.030457, 0.042898, -0.025073, -0.019195, -0.047005, 0.06284, 9855e-6, -0.023275, 0.016892, -0.013982, -0.126207, -6616e-6, 0.06082, -8153e-6, -177e-5, 0.07038, -0.052344, -0.022157, -0.079375, 0.036298, 0.01264, -0.038303, 9061e-6, 0.054096, -527e-6, 0.022462, 0.088897, 0.021251, -0.022435, 0.037269, 3235e-6, -0.016248, 0.024969, 0.059728, 9759e-6, -0.039825, 0.021818, 0.02705, 0.06324, -0.056128, -8343e-6, 7975e-6, 9317e-6, 7639e-6, 0.067749, -0.013855, 0.04062, -0.062639, -0.014186, -0.017472, 0.055122, 0.039798, -6935e-6, 0.06354, 441e-6, 0.044488, 0.056719, -0.02912, 0.116215, -0.038113, 0.046484, 0.029679] },
|
|
4822
|
+
{ name: "suggest_entity_merges", category: "diagnostics", tier: 3, descriptionHash: "66d21f4a056978e4", embedding: [-0.056919, -0.082736, -0.028136, -0.050843, -0.021154, -0.031823, 0.013065, 0.024678, 193e-5, -0.030721, 0.05821, -0.129344, 0.05997, 0.013055, 0.029423, 0.091226, -0.027759, 0.065644, -0.024196, -0.120367, 0.01858, 0.041376, -0.019111, -1567e-6, 0.026863, -0.027572, -0.020852, 0.045148, -0.059996, -0.086939, -0.030549, 0.111453, -0.016858, 0.054856, 2526e-6, 0.0211, -0.051692, 0.031396, 0.045744, -0.062892, -0.051104, -0.034671, 0.02079, -0.054056, -0.119639, 0.06243, -0.114065, 0.03982, -0.04162, 4377e-6, -0.080736, -0.058498, 3071e-6, 0.013357, 0.019433, -5372e-6, -0.04406, -0.027189, -0.098771, 4704e-6, -0.07861, 0.018521, -0.015337, -0.044951, 9384e-6, 0.07258, 0.034639, 0.060699, 0.065717, -5104e-6, 0.031365, 0.024841, -0.096923, -0.027981, -0.034835, 0.055239, 0.020288, 0.043382, -0.104154, -0.049399, -0.165809, 0.094569, -9939e-6, -3594e-6, -3407e-6, 0.02522, 973e-6, -0.046729, -0.039771, -0.020991, -0.060936, -0.017743, 0.053153, -1278e-6, 0.055769, 0.069803, -7947e-6, -0.103958, 0.105225, 0.016023, -0.106644, 0.039312, 0.029275, -0.049635, -0.068676, -2032e-6, -3656e-6, 0.037211, 0.063579, -0.041866, -0.044688, 328e-5, -1123e-6, -0.04215, 0.059282, -0.032588, 0.062824, -0.042274, 0.022692, -0.052803, 0.045417, 0.015006, -0.024177, -0.053071, 4607e-6, 0.07761, -0.055856, 0, 0.039729, 0.090192, 0.059689, 0.037465, -0.019507, 0.012825, -0.052839, 0.053827, -0.02458, -0.015768, -0.088966, 0.11058, 3e-3, -0.070807, -4745e-6, -0.076551, 0.021143, 0.12428, -0.064723, 0.014388, 0.052702, 0.067979, 9102e-6, 0.040554, 624e-6, -0.038064, 6242e-6, -0.048525, 0.077163, -0.013909, -2561e-6, -0.02122, -0.015677, 0.07482, 6408e-6, 0.096156, 0.012995, -0.051363, -0.035505, 0.030466, -16e-5, 0.01782, -0.034281, -9349e-6, 0.063363, -0.017444, -0.062395, -0.051754, -3099e-6, -8069e-6, 0.043541, -0.011462, -3837e-6, 0.045489, -0.037533, 0.016151, -0.049495, 0.02025, 0.046855, 0.089353, 0.04583, -248e-5, -0.053018, -0.02953, 0.058093, -0.018817, 0.054492, -0.025768, 0.03336, -0.026928, 0.049422, 0.018143, 5174e-6, -0.011139, 0.021038, -0.07034, -0.055485, -0.013063, 0.060221, 9673e-6, -0.080547, 0.013436, 0.014598, -0.074354, -861e-6, -2099e-6, 0.012244, -0.085963, -0.109916, 0.027064, -0.0597, 0.058569, 0.032422, 0.027334, 0.083326, -0, 0.01036, -0.066962, 0.11019, 0.029458, -1728e-6, -0.051122, -0.011062, -4583e-6, -0.090406, -0.048595, 0.024941, -0.068156, 0.04712, -0.072483, -0.062635, 0.041977, 0.029007, -0.011157, 0.051753, 0.113903, 0.067455, 0.028027, -0.076432, 0.091914, 0.043345, 0.041194, -0.022108, -0.045441, 0.056558, -0.083417, 0.017182, -0.010208, -0.026166, -9056e-6, 9959e-6, -0.056765, 0.02708, -0.036454, -0.025576, -0.038362, -0.03777, 0.064478, -0.022687, -0.033893, -0.020088, -4115e-6, -0.024571, 0.024233, 0.041371, -0.09714, 0.014539, -0.012076, -0.118042, -0.051535, 0.031059, 0.020391, 0.060845, 0.031517, -0.028473, 0.010836, 0.070028, 0.046522, 0.046755, 0.076858, 0.096406, -0.08573, 1198e-6, 0.028533, -0.012674, 3479e-6, -0.028632, 0.029387, 8034e-6, -0.045325, 0.056279, -0.029873, 0.02604, -0.036642, -0.011339, -0.029645, -0.021018, -0.024619, 0.015298, 0.047438, -0.058412, -3312e-6, 0.04413, 0.066442, 0.059711, -0.012577, -0.038283, -0.042409, -0.036611, -0.023199, -0.031379, -0, 0.08291, 9702e-6, -0.043328, 0.01478, 8079e-6, -0.041024, -0.044219, 0.084495, -0.011897, 0.010865, -0.028, -0.017769, -0.095263, 0.016811, 0.076926, -0.072057, -0.08672, 0.042312, -7319e-6, 7732e-6, -0.055896, 0.048616, -2913e-6, -0.018315, 0.014117, -3394e-6, -4738e-6, 747e-5, 0.070104, 1405e-6, -0.020228, 8328e-6, -3083e-6, -0.030822, 0.06542, 0.027315, 0.03818, 0.059468, -0.080384, 0.038483, 0.070518, -0.015325, -3322e-6, 0.052624, 0.173457, -0.02597, 0.045346, -0.037433, 0.040258, -0.072503, -0.025732, 0.031087, 0.035199, 0.032405, -0.029449, 0.050757, 0.021173, 0.056884, 0.061699, -0.034046, 0.098762, -0.126364, 0.037212, 0.095652] },
|
|
4823
|
+
{ name: "suggest_wikilinks", category: "wikilinks", tier: 2, descriptionHash: "201fee2c238e11db", embedding: [-0.087926, -0.033679, 0.023197, 0.01143, 0.04622, -0.01509, 7699e-6, 0.092, -0.047412, 365e-6, 8361e-6, -666e-6, 0.03697, 0.014865, 0.013506, 0.066341, -0.047687, 0.04815, 0.052042, -0.059547, 0.101103, 0.040904, 0.031438, -988e-6, 0.019365, -0.046766, -0.112197, 0.038101, -0.015538, -0.047809, -0.036562, 0.120747, -0.038133, -0.0104, -0.028505, 0.026603, 3089e-6, 0.059674, 0.054027, -0.061576, -0.028061, 0.014901, -0.015568, 0.032048, -0.027437, -0.02819, -8496e-6, -0.044223, -0.095453, 0.083732, -0.128951, -0.080338, -0.051783, 0.024316, 0.036715, 0.021306, -0.06261, -0.023134, -0.045669, -0.03436, 0.043106, -0.012576, -0.080658, -0.0173, -0.043357, 0.026093, 0.047086, 0.114845, 0.023568, -0.036129, -4264e-6, -0.013699, 9611e-6, 0.02516, 0.01379, -0.047354, 1922e-6, -0.021044, -0.114776, -0.117697, -0.05118, 0.073266, 0.040634, 0.033002, -0.019589, 9625e-6, 0.036853, -0.049702, -0.034456, 0.061082, 0.046786, -0.149435, 0.056729, -0.023356, 0.015646, 0.07034, 65e-6, -0.091086, 0.067034, 0.058849, -0.011727, 0.073169, 0.040974, -0.010229, -0.04786, 0.019048, 0.022835, 0.069234, 0.037815, -0.053632, -0.022283, 0.023234, -0.054981, -0.090099, -489e-5, -0.033568, 0.038045, 277e-5, 0.104927, 0.046287, 0.046575, 0.013042, -87e-5, -0.042439, -0.061681, 0.017469, -0.102704, 0, 0.11572, 0.087114, -0.02127, 0.035205, 406e-6, -0.016245, -0.050708, -33e-5, -0.116215, -0.075683, 0.026982, 0.027702, -0.047105, -5753e-6, -264e-6, -0.022155, 0.012431, 0.114803, 0.01526, -0.028866, 0.011857, 0.065097, -9765e-6, -0.030302, 0.075908, -0.0276, -0.029536, -0.027599, -6722e-6, 0.01796, 0.017565, -0.062, -0.026275, -0.011827, 0.045592, 0.055436, -0.045514, -0.016029, 0.03745, -0.096439, 0.023817, -0.021372, -0.023993, -9987e-6, 0.045906, 0.015916, -0.048773, -6574e-6, 0.082772, -6896e-6, 0.036545, 7366e-6, -7993e-6, 0.073664, 0.014093, 0.02003, -0.076161, 0.025495, 0.044503, 0.02731, 0.037886, -0.045222, -0.0755, -0.010741, -0.050355, 9e-5, -0.023332, -0.028648, 0.026821, 3469e-6, -0.042714, 3628e-6, 0.051987, 0.066656, -0.071197, -0.041362, -0.09024, -0.091242, -0.011598, -1747e-6, -0.055287, -0.089171, -0.016527, -5228e-6, 5932e-6, 3435e-6, 0.061337, -0.132355, -755e-5, -0.059178, -0.087698, 0.049523, -0.029722, 9958e-6, -0.030201, -0, 0.060163, -0.06301, 0.016516, 9223e-6, -0.054104, 0.034918, -0.030298, -0.018737, 8167e-6, 0.014516, 0.020196, -5827e-6, -0.031828, 0.012184, -0.042444, 0.010891, -0.010764, -0.048797, 0.01023, 0.100568, -2086e-6, 0.013067, -0.018976, 0.069909, 0.098445, 0.022302, 0.028049, 2855e-6, 0.010309, -0.018231, -0.011878, -0.021742, -0.022369, -0.037745, -8219e-6, -0.010034, 0.018576, -0.034832, -0.052535, 0.070053, 0.157919, 0.044287, 0.036195, -0.030924, -0.067352, -0.033278, -0.041242, 0.071349, -0.048063, -0.056427, 0.050881, -0.053154, -0.017094, -0.093378, 0.017694, 0.065759, 0.034761, 0.04466, -0.037214, -0.040482, 0.017718, 0.021895, -0.08166, 0.092921, 0.044633, -0.121505, -0.034043, -5513e-6, -0.080357, 0.023359, -0.030912, -24e-4, -0.020234, -0.118205, 0.047996, -0.010115, 0.05327, -0.026015, -0.028157, -0.08095, 0.026384, 0.04163, 0.067145, -0.027178, 0.031569, -0.031085, 924e-5, 0.13401, -0.015577, -0.060949, -0.021646, -0.067174, 0.028816, 0.041652, -0.044691, -0, -0.035044, -0.02627, -0.024305, 0.047008, -277e-5, 7441e-6, -0.028951, 0.073738, -0.03208, 0.025075, 9734e-6, -0.031137, -0.117163, -0.041742, 0.047591, -0.02491, 0.030983, 0.080311, -0.054938, -0.050714, -0.047178, 0.044839, -1892e-6, 0.029783, -4936e-6, 0.075795, 3062e-6, 0.041717, 0.059949, 0.023524, -0.01767, 0.048112, -0.037718, -0.082305, 0.041729, 0.063978, 565e-5, -0.017793, -5835e-6, 0.054319, 0.055404, -0.014783, 196e-6, 0.070979, 0.056021, -0.021871, 0.037904, 0.012855, 0.042327, -0.107494, -3162e-6, -8594e-6, 0.072807, -4138e-6, -0.069218, 0.149036, 0.046221, 0.097923, -0.015864, -0.049187, 0.132343, 0.01228, 0.043925, 0.059402] },
|
|
4824
|
+
{ name: "tasks", category: "tasks", tier: 1, descriptionHash: "2e579442a1b0dbd6", embedding: [-0.013276, 0.020771, -0.024953, 0.018899, 78e-5, -0.016837, -0.04775, -0.02909, -0.03511, 2661e-6, -0.019, -0.062881, 0.017673, 0.038112, 0.052655, -0.017946, -9783e-6, -0.016491, 0.049551, -0.089056, 0.072561, 0.023856, -1402e-6, 0.048581, -0.053519, -0.017465, -0.094202, -0.0555, 0.019632, 0.014501, -228e-6, -0.020531, -0.018155, 0.051039, 0.109104, 0.131481, 2625e-6, -0.019318, -0.015926, -0.068079, 0.024566, -0.021488, -0.033139, -6677e-6, -0.032533, -0.079785, -0.080598, -0.039621, -0.03142, 0.05311, -0.020656, -0.079573, -0.011537, 0.054345, -0.011732, 0.103932, 2989e-6, -0.037641, -0.090069, -0.072655, -3504e-6, -0.063856, -0.074584, -0.076449, 403e-6, 0.063228, 0.022818, 0.036302, 0.035866, -0.080738, 0.019781, -0.025172, -0.049168, -0.033685, 7521e-6, 0.02638, -7204e-6, -0.013871, -0.072187, -0.142548, -0.038291, -0.031414, -0.044986, 0.043814, 0.036499, 6137e-6, -0.056649, -0.032525, 0.057586, -0.037474, 0.066287, -0.107788, 6267e-6, 0.015731, -2655e-6, -0.016149, 1728e-6, -0.018464, 0.091707, 0.045086, -0.035789, 0.033101, 0.013783, 0.024855, 0.067032, 0.095728, -0.032388, 5207e-6, -0.060976, -0.055536, -0.01097, 0.014119, 0.100639, -7956e-6, 0.062702, -0.032664, -6096e-6, 0.030398, -0.03458, 0.055176, 0.158903, 0.076086, -0.015649, -0.055241, -0.071845, -0.022655, 0.019792, -0, 0.115602, -0.018032, 0.029924, -0.040144, 0.015513, -0.022144, -2146e-6, 0.056768, 0.010782, 0.012868, 0.039853, -0.01242, -0.063652, -0.132719, -0.027601, -0.040389, 0.024223, 0.060357, 0.066039, 0.069676, 4038e-6, -0.091343, -0.034932, 0.018386, 0.12482, -0.050535, -0.01281, -0.043095, -0.077605, -8579e-6, 2842e-6, 604e-6, 0.017393, -0.013838, 0.017278, 0.043523, 0.032992, 0.045486, 9489e-6, -0.074758, 0.057613, -5715e-6, 0.030295, -0.039335, -5569e-6, -0.063722, -0.017374, -0.022172, 0.104223, 0.060519, 0.050231, -0.012736, -0.090728, -0.077389, -7415e-6, -0.081186, 0.022093, 5951e-6, 0.052169, -0.034447, 0.091095, -0.090502, -0.063768, 0.022894, -0.04093, 0.013308, -0.030178, 9995e-6, 0.075861, 0.053696, -0.068463, 0.04442, -0.027702, 0.022344, -0.011752, -0.017352, -809e-6, -0.030913, 0.050483, 8251e-6, 0.01759, -0.065835, -0.043476, 0.080153, 0.016462, 0.097836, 0.018179, -0.073553, -0.050155, -0.095358, -0.109925, -0.016189, 0.019632, -0.04452, 0.045155, -0, 0.080133, -0.012853, -9867e-6, -9142e-6, 0.095486, -2111e-6, 0.028415, -0.042918, -0.028776, 0.134401, -0.050554, 0.026548, 1735e-6, 0.015434, 8332e-6, 0.03304, 5888e-6, -0.038437, -354e-5, 0.063498, -0.085491, 0.027744, -0.015281, 0.025685, 0.098284, 0.017909, -0.019118, -0.080708, 0.043864, -0.046724, -0.025168, -0.089892, -0.033022, -9976e-6, 0.014293, -0.020235, -4382e-6, -0.039019, -0.074498, 0.04054, 0.080335, -6902e-6, -0.096745, -7588e-6, -0.075252, 0.089377, 0.076723, 0.025985, -0.077253, -0.044786, 0.030694, 7103e-6, -0.020912, 0.039401, 0.069438, 0.04042, 0.045475, -0.073805, -6956e-6, -0.036211, 0.024414, 0.059561, -0.010221, -0.068023, 0.034883, -0.09665, 0.023405, 0.039204, -0.066727, 0.032196, 6e-4, -6846e-6, 0.098534, -0.060425, 5903e-6, 0.034744, -0.063188, -0.060958, -0.035857, -5241e-6, -0.033658, -0.018913, -0.014797, 0.055188, -0.026866, 0.026353, 0.061631, 0.034336, -0.036674, 0.037348, -0.03975, -0.034417, 0.017937, 0.027268, 0.031157, -0, 3219e-6, 0.037518, -0.085805, -0.02444, 0.048444, -0.063616, 0.037124, 0.082172, 0.02208, 0.02799, 0.057703, -0.057056, 906e-5, -0.016121, 0.014738, -0.011302, 3157e-6, 0.063393, -0.026168, -0.032483, 0.014411, 0.026157, 0.037727, -0.100398, -0.03237, 0.028089, -0.06716, 0.107143, 0.105365, 0.02195, 0.048595, -0.023617, 0.045051, -0.039745, 0.030311, 0.037301, 0.067702, 8458e-6, -4654e-6, 0.060511, 0.054378, 0.050095, 0.027856, 0.091638, -395e-5, -0.016278, -0.042294, 0.022132, 0.01539, -0.047597, -0.079236, -0.02601, 0.056581, 0.058989, -2262e-6, 0.049198, 0.142813, -0.085141, -0.01644, -0.020366, 0.100935, -6841e-6, -0.011052, 0.050243] },
|
|
4825
|
+
{ name: "temporal_summary", category: "temporal", tier: 2, descriptionHash: "8d5efe982a6e7b48", embedding: [-0.012584, 0.030404, -0.010051, -0.02263, 486e-6, -8374e-6, -0.058897, -1491e-6, 0.066974, -0.034731, -0.021033, -0.026081, 4653e-6, 0.063252, 8517e-6, -6038e-6, -0.010262, 0.019021, 0.054048, -0.054229, 0.032114, -0.022796, 0.02048, 0.033114, 0.026121, -4323e-6, -0.091761, 0.02303, 0.018773, -0.02382, -0.04025, 0.077082, 0.044903, 0.020354, -0.014153, 0.053962, -0.027921, 0.039207, -0.033903, -0.055242, -0.067499, -0.084209, -0.03988, 0.037315, -7895e-6, -0.098799, -7776e-6, -0.079319, -0.054228, 0.104047, -1998e-6, -0.024861, 2847e-6, 0.086432, -0.01995, 0.09159, -0.015342, 0.039015, -0.027714, -0.05839, 0.026804, 0.031323, -0.046272, 0.028905, 0.036148, 0.04787, 0.0271, 0.072911, 0.086525, -0.050829, -0.032751, -0.035401, -0.036228, 4398e-6, -8671e-6, 0.048728, 1236e-6, -0.038433, -0.017016, -0.116177, -5509e-6, 0.025025, -0.045777, -0.016203, 0.014099, 3054e-6, 2739e-6, 5739e-6, -0.03102, -0.019732, 4173e-6, -5827e-6, 0.107423, -0.028867, -0.015649, -0.017875, -0.052666, -0.080469, 0.066997, 0.037395, 3681e-6, 0.043261, -0.037561, -0.050646, 0.028616, -0.057238, 7262e-6, 0.012127, -0.03308, 0.06797, 1004e-6, 2733e-6, 0.016537, -0.072108, 0.052094, 0.039616, -0.058077, 0.01438, 0.052351, 0.078097, 0.15895, 0.020716, 0.022015, -0.058298, -0.013536, -0.038091, 0.06813, -0, 0.044867, -0.031682, -0.011726, 0.126739, 3033e-6, -0.013805, 0.026579, -0.049728, 5031e-6, -0.03966, 274e-6, 0.06932, -0.073353, -0.017266, 0.040977, -0.011918, -0.010885, 0.152697, 0.104033, 0.02259, 0.022779, -0.036312, 4854e-6, -0.030276, 0.127501, -0.063289, 0.019314, -0.018303, -0.06436, 0.014449, 0.046812, -0.032969, -0.019654, -0.017638, 0.081589, -4468e-6, 0.050312, -7002e-6, 0.060137, -0.067409, -0.054154, -0.069849, -0.020527, -0.086573, 0.047164, -0.02643, 0.06113, -1753e-6, 0.012624, -0.011094, 0.023807, 0.038422, -0.043596, -0.084882, -0.030147, 0.011617, 0.035994, -0.080683, 3313e-6, 0.052836, 0.051207, 2858e-6, -1863e-6, -0.046282, -0.092891, -84e-5, -0.02554, 0.025824, 0.040304, 0.057705, -0.049889, 0.046165, 0.038423, 0.021533, -6638e-6, -0.042016, 0.040888, 0.029347, -0.032145, 0.019899, 717e-5, -0.086684, -0.032957, 0.04736, 0.020715, 0.055217, 0.072208, -0.011139, -0.07652, -0.055933, -0.096475, -0.017683, 0.027742, 0.040739, 0.037193, -0, 0.027099, 1013e-6, -0.068679, -792e-6, 0.054795, -3489e-6, -0.128378, 0.019918, -0.029809, 0.077442, -0.062682, -9804e-6, -9373e-6, -0.041533, -1169e-6, -0.029036, 9382e-6, -0.116736, -0.044774, 0.095341, 0.014579, -0.0638, -0.120375, 0.017932, 0.035661, 0.02041, 0.03, 0.02193, 0.020522, -1413e-6, -0.025793, -0.100771, 9834e-6, -0.051971, -0.037624, -0.056595, 0.083798, -0.142301, -0.066233, -0.038936, 0.074365, -0.036204, -0.023713, -0.053883, -0.069291, 8801e-6, 0.016706, 0.028315, -0.015999, -0.073152, 0.052902, 0.010414, -0.025703, -0.036915, 0.02939, 0.086445, -0.018886, -0.047195, -0.019849, -0.027667, -1714e-6, 0.068265, -0.047963, -1653e-6, 8414e-6, -0.089708, 0.022007, -0.051364, -0.165873, 4656e-6, 0.093669, -0.03031, 0.016022, -0.016007, 8031e-6, -0.020405, 0.029768, -0.070996, 0.013198, -0.052927, -0.092054, -0.019378, 2764e-6, 0.033317, -0.013703, 0.019875, -0.037034, 0.042126, 0.032251, -0.013414, -0.074213, -0.050504, -0.105844, 0.024745, 0.03612, -0, 0.023963, 0.078234, 6986e-6, 0.012505, 0.010764, -0.065218, 0.064887, 0.040682, 0.06383, 8858e-6, 0.074629, -0.045908, -0.081319, -0.066509, -6775e-6, 0.034879, -5754e-6, -1181e-6, -0.051379, -0.046514, -0.014092, 3918e-6, 7062e-6, -0.079021, -0.034659, 0.060983, -0.028434, 0.148362, 0.116227, 617e-6, 0.043084, 0.05738, 0.025098, -0.074089, -0.0776, 0.054355, 0.082948, -5219e-6, -2841e-6, 0.064852, -0.011109, -0.058733, 0.035866, 0.067133, -0.023723, 0.014336, -0.075131, 0.01381, 0.026843, -0.045412, -5998e-6, -0.083143, 0.029057, 0.071893, 0.078156, 0.094315, 0.079481, -0.077651, 0.088925, 0.014736, 0.110291, -1331e-6, -0.02181, 0.031012] },
|
|
4826
|
+
{ name: "track_concept_evolution", category: "temporal", tier: 2, descriptionHash: "35a849801d3dcfde", embedding: [-0.066394, -0.027612, 0.027514, 0.017875, 0.029067, 0.013975, -0.08902, -9819e-6, 5831e-6, -9193e-6, -0.028262, -0.065747, -0.034031, 2773e-6, 354e-6, 0.038028, -6181e-6, 0.010226, -0.039514, -0.101699, 0.029819, -0.048547, -8072e-6, 0.04696, 0.0112, -0.018059, -0.053294, 0.052272, 0.02233, -0.096206, -0.032807, 0.099755, -0.056745, 0.037326, -0.07215, -0.019414, 0.034801, 0.025889, 0.02998, -0.033451, -0.025613, -0.027516, -5515e-6, -0.04354, -0.01872, 4358e-6, -0.023337, -0.038311, -0.16127, 0.072382, -0.067144, -0.055467, 0.02254, 0.052462, 0.059174, 0.081874, 0.032221, 0.052349, -0.036774, -0.023258, -1677e-6, 0.021939, -0.04761, 0.037123, -0.044199, 0.025329, -0.014527, 0.041421, 0.110492, -0.066487, 0.030483, 0.012148, -0.054994, -2613e-6, 0.041408, -0.012444, 0.013995, 0.034449, -0.020065, -0.129914, -0.03618, 0.067006, 783e-6, -0.032871, 0.032238, -0.079803, 0.014118, -0.021943, -0.092119, 0.032791, 0.018752, 0.05284, 0.149253, -3928e-6, 0.033431, 0.038916, 3387e-6, -0.05135, 0.164926, 0.025385, -0.011882, 0.044932, -0.067691, 0.101117, 0.041151, -0.056885, -0.035056, 0.077819, 0.01239, 0.043013, -0.014546, 0.023123, -0.030293, -0.076781, 7811e-6, -0.027109, -0.048991, 0.0514, 0.022125, 0.048376, 0.075342, 0.027617, -0.042326, -0.048137, -0.051454, 0.048316, 0.019642, 0, 0.104424, -0.017739, -0.044934, 0.056812, -178e-6, 7771e-6, -0.058016, -0.023516, -5414e-6, -0.06531, -0.036953, 0.130483, -0.074826, -1576e-6, 0.082144, -0.066492, -0.047406, 0.105683, 0.072879, -0.018546, -0.016548, 0.033397, -0.01233, -0.02256, 0.094569, 0.058384, 0.027574, -0.020496, -0.07929, 0.013796, 0.060734, -0.076144, -0.058778, -0.017896, 0.038973, 0.014191, 0.046551, -0.079179, 9379e-6, -0.068411, -0.036181, -0.039074, -0.057967, -0.072075, -0.031432, -0.037887, 0.051132, -0.053183, -0.04096, -2426e-6, 3304e-6, 0.010591, 0.01809, -0.032302, 8426e-6, 0.030063, -0.015727, -0.038329, 0.025017, 0.07252, 0.123924, 0.03023, 0.013698, -0.066092, 0.011911, 0.045028, 0.01238, -0.05778, 0.038377, 0.047501, 0.020423, 0.055073, -0.03449, 5896e-6, 0.039952, -0.040269, -0.059263, -0.02145, -9852e-6, 0.026732, -0.119293, -0.042761, -0.0192, 1189e-6, 0.029059, -0.082445, 0.046129, -0.055542, -0.043152, 0.033045, 7202e-6, -0.031837, 0.046794, 0.04297, 0.070867, -0, -0.033005, 0.012916, 0.022976, 4735e-6, 0.014663, -0.04492, -0.110048, 0.047303, -0.035891, 0.038816, -5327e-6, -0.014763, -4283e-6, -0.024244, -0.040701, -0.032332, -0.013586, -0.076445, -0.01159, 0.054772, 0.049663, -0.021123, -0.133074, 0.03586, 0.048874, 0.012527, 0.041329, -0.011425, 0.046884, -0.069556, -0.066725, -0.062435, 4683e-6, -0.019825, -0.010766, -0.02339, 0.013257, -0.107689, -0.049137, -0.056235, 0.023481, 0.042448, -6393e-6, -9176e-6, -0.012964, 0.016803, -0.062671, 0.105618, 0.012987, -0.035987, 0.013333, 0.020818, 0.023478, -0.048061, 5895e-6, 0.11602, -0.013955, -711e-5, -0.050182, 0.038278, 7604e-6, 0.03869, -0.03027, 0.068912, 0.057125, -0.032315, -8022e-6, -0.055378, -0.106772, -0.032331, 0.061624, 0.015207, -0.053895, -0.083001, 0.039741, -0.055532, -0.043309, -3068e-6, -0.021116, -0.07769, -0.06525, -8855e-6, 0.073246, 0.027196, -314e-6, 0.021238, -0.019533, 0.037707, 0.053471, -0.037809, -0.025758, -0.092316, -0.170993, 0.043954, -0.039397, -0, -5194e-6, 0.080333, 0.059989, 0.069446, 0.082044, 0.025263, 0.028698, 0.08908, -0.01378, -3719e-6, -0.026039, 0.025909, -0.0324, -0.014876, 0.068024, -0.030245, -0.017759, -0.02105, -0.012995, -0.028655, -0.042669, 8722e-6, 0.014655, 0.013, -0.052718, -0.019883, -0.0216, 0.111194, 0.102879, -0.033623, 0.059344, 0.07326, 0.019751, -0.025099, 0.017234, 0.017319, -0.04101, 0.014638, -0.023538, 3273e-6, 0.084518, 0.017649, 438e-6, 0.112043, 0.082068, 0.02293, -0.022485, -0.028121, -0.01399, -0.087097, -0.052595, -2254e-6, -2463e-6, 0.044122, 0.011682, 0.051097, 0.069621, -0.03672, 0.057832, 0.015413, 0.146734, -0.049444, 0.018864, 0.057441] },
|
|
4827
|
+
{ name: "unlinked_mentions_report", category: "wikilinks", tier: 2, descriptionHash: "fa8cbc72f851a433", embedding: [-0.043403, -0.059057, -0.052612, 0.032593, 0.073379, -8594e-6, -0.025758, 0.073152, 0.030035, -0.015316, -0.022573, 0.01476, 0.048703, 0.036643, -0.037356, 0.033767, -0.026318, 0.035295, -0.022727, -0.08884, 0.036378, 3218e-6, 0.065105, -4987e-6, 0.079456, -0.090142, -0.100232, 9065e-6, -0.04427, -0.090685, -0.044883, 0.083887, -0.07928, 0.01543, -0.035524, 0.043873, -1538e-6, 0.013981, 8473e-6, -0.076799, -0.025268, -0.031508, 0.01098, 8215e-6, -6906e-6, 2439e-6, -0.077921, 0.045503, -0.110854, 0.073496, -0.062844, 4501e-6, 0.024594, 0.128781, 9095e-6, 7154e-6, -0.024891, -0.053577, -0.104684, -0.024634, -0.010552, -8353e-6, -0.061621, -0.059977, -0.024269, 0.030489, 0.062633, 0.088766, -3995e-6, -2878e-6, 9637e-6, -8475e-6, -0.034382, 0.019058, 0.030291, 0.059085, 3412e-6, 0.070424, -0.036864, -0.095411, 0.037747, 0.040537, 0.015282, -0.023203, -0.010689, 0.020749, 0.015029, -0.035299, -0.044923, 0.03694, -0.01716, -3789e-6, 0.11855, -0.024538, 5842e-6, 4496e-6, -0.040894, -0.067558, -0.023621, 0.014858, -0.040129, 0.112241, -8721e-6, -0.023956, -0.034595, 0.055662, 0.021006, 0.112857, 0.017468, -6126e-6, 3439e-6, 0.035704, -0.036955, -0.081409, 0.046715, -0.011629, -0.019627, 0.014172, 0.076177, -6059e-6, 2223e-6, 0.047427, 0.036138, 4e-6, -0.117087, 5943e-6, -0.05318, 0, 0.079684, 0.083882, -4814e-6, -8161e-6, -769e-6, 0.029912, -0.098636, 0.015067, -0.053236, -0.01957, -0.054682, 0.059526, -0.01584, -0.014642, 0.02663, -0.024237, 0.055722, 0.168201, -0.01115, -0.048271, 0.071489, 0.08469, -106e-5, -0.030227, 0.084959, -0.01287, -0.044828, -0.079288, 0.018608, 0.011261, 0.022888, -0.015121, 0.016999, 0.025869, 0.090193, 0.010482, -0.015673, -0.060109, -0.018592, -0.033456, 0.034607, 9373e-6, 1939e-6, -0.063826, 623e-6, 2646e-6, -0.022678, -0.016807, 2904e-6, -0.031994, 0.052949, 0.056651, -0.067863, -0.014608, 5529e-6, -0.040716, -7879e-6, -0.041377, 0.014274, 0.04842, 0.051271, -0.051886, -0.021254, -0.041553, -0.035632, -0.0177, -619e-6, 0.046827, -0.015706, 0.08006, -0.019522, 0.084396, 0.10448, 0.033475, -0.081907, -0.014839, -0.058456, -0.044959, 7962e-6, 0.055608, -0.024756, -0.095705, -0.063878, 0.026612, 0.014212, 0.082312, 0.018351, -0.086016, -0.048671, -4412e-6, 0.016977, 0.021079, -0.010761, 6745e-6, -686e-5, -0, 2398e-6, 3744e-6, 0.099949, -0.022292, 251e-6, -0.028, -5406e-6, -0.016241, -0.025676, 0.055134, 866e-5, -0.010589, -0.035276, -0.066385, 0.019118, 2427e-6, 0.052813, -0.063076, -0.061916, 0.075667, 0.087794, -0.045386, 179e-6, 0.104103, 0.032916, -5843e-6, 0.058929, -0.037075, 0.054124, -0.031685, 0.035429, 0.041275, -0.045502, -0.052257, -0.047025, -0.038716, -0.013407, -0.010663, -0.047646, -0.011173, 0.096806, 0.058623, -0.076553, -8619e-6, -0.057279, -7185e-6, -0.149301, 0.018167, 9558e-6, -0.065758, -0.024521, -0.041232, -9094e-6, -0.037079, 6416e-6, 0.029248, -0.042794, 0.042405, 0.059843, -9068e-6, 0.02342, 0.077811, -0.083688, 0.098982, 0.041061, -0.076616, -0.025538, -4903e-6, -0.127477, 6772e-6, 0.027905, -947e-5, -0.01071, -0.093552, -845e-6, 0.063473, -566e-6, -0.041639, -0.021445, -0.052231, 0.010041, 0.026714, 8444e-6, -6344e-6, 0.029815, -0.055368, 0.081072, 0.050161, 0.024435, -0.049553, -5714e-6, -0.090184, -0.026983, 3313e-6, 0.014997, -0, -0.022882, 0.016447, -0.016295, 0.016729, 0.062728, 0.031438, -5521e-6, 0.206063, 2853e-6, 0.037662, -0.01073, -0.032851, -0.121333, -0.01786, 0.05225, -0.047542, -0.013142, 1632e-6, -83e-5, -0.044722, -0.109991, 0.043414, 0.04468, -0.021195, -0.047719, -0.04742, 0.044585, 0.100284, 0.116844, -5708e-6, -3389e-6, -1727e-6, -0.021854, -0.077837, 0.047661, 0.115736, -0.01703, -0.016782, -0.070185, 0.040201, 0.0486, 0.011666, 9534e-6, 0.083378, 0.055117, -7717e-6, -0.037092, -0.073035, 8171e-6, -0.105684, -0.022588, -0.081798, 0.066728, 0.030975, -0.01085, 0.085148, 0.028342, 0.01528, 0.047238, -0.023939, 0.13095, -0.047161, -5016e-6, 0.057295] },
|
|
4828
|
+
{ name: "validate_links", category: "wikilinks", tier: 2, descriptionHash: "209dc2e558399f5a", embedding: [-0.098691, -0.029943, 0.038166, 0.031119, 0.077925, -0.045782, -0.099117, -8327e-6, -0.070214, 0.026867, 0.018294, 0.022702, 0.025491, 0.026947, 3644e-6, 0.105487, -0.064505, 0.0888, -5224e-6, -0.022096, 0.040339, 0.016982, 6509e-6, 0.077802, 0.018694, -0.064871, -0.149519, 0.029998, -9368e-6, -0.094801, -0.023903, 0.037908, -0.146312, -0.049947, 0.087979, 0.056657, 0.075872, -0.023725, 0.058489, -0.031767, 0.035878, -8436e-6, -0.035289, 0.012924, -0.036063, 0.01975, -0.013901, -0.029579, -0.061773, 0.057495, -0.076858, 549e-6, -0.023312, 0.015594, 0.041494, 0.032738, -0.052357, 0.019382, -0.027603, -0.02778, 0.111452, 0.02607, -0.060723, -0.02557, -0.054619, 0.075908, -0.011621, 0.044983, -681e-5, 0.014596, -0.013532, -0.038142, 0.013586, 0.090857, 0.021728, 1232e-6, -0.01391, -0.050812, -0.097344, -0.092301, -0.028953, 0.053324, 0.037241, 0.012131, 0.066432, 0.055928, 0.010668, -0.035001, -3119e-6, 0.069759, 0.105799, -0.060443, 0.117127, -3399e-6, 0.079946, 0.017779, -6407e-6, -0.055274, 0.059228, 0.056376, 1318e-6, 0.047645, 0.076524, -0.019265, 0.044257, 0.04849, 789e-5, 0.127545, 0.024557, -0.048114, 0.023471, -0.016305, -1362e-6, -0.065747, -0.039089, -0.02713, -7595e-6, 0.041323, 0.015761, 0.074245, 0.03402, 5928e-6, 0.049712, 0.023927, -0.067535, -0.056222, -0.016389, 0, 0.080429, 0.098754, -0.050445, -0.027401, 7714e-6, 0.028633, -0.056264, -7097e-6, -0.063888, -0.049453, 6077e-6, 0.023261, -0.039024, -0.055365, 0.017415, 0.014182, 0.016943, 0.067218, -0.018686, -0.024258, 0.016312, -0.040963, -3627e-6, 7141e-6, 0.022484, 0.060128, -9268e-6, 0.014189, -0.031275, 8123e-6, -1426e-6, -0.048006, 0.073378, -2975e-6, 7677e-6, 7441e-6, -0.023182, -7933e-6, -0.025124, -0.105595, -0.033949, -9325e-6, -5373e-6, 0.031399, 627e-5, 0.011541, -0.013256, -3805e-6, 0.061948, -0.030013, -8319e-6, 0.01269, 17e-4, 0.018246, -0.047944, -0.031279, -0.062246, 7895e-6, 0.01429, -4697e-6, 0.099591, -0.044228, -0.087968, -0.037993, -0.084814, -0.015018, -0.094717, 6502e-6, 549e-5, -0.031771, -0.029391, 0.027553, 0.048198, 0.091527, -0.074578, -0.078132, -0.103848, -0.108273, 681e-6, 0.026514, -6875e-6, -0.107259, -1808e-6, 0.015066, 0.012346, 0.014583, 3954e-6, -0.119714, -0.026179, -2178e-6, -0.041055, 0.02205, 0.015443, -0.041432, 0.012756, -0, 0.054879, 5848e-6, 0.046836, 0.036241, -0.089526, 0.046634, -0.041942, 3281e-6, -7171e-6, 0.065026, 0.054499, 2379e-6, -0.057715, -0.013215, -0.055922, -0.057406, -0.039492, -0.029713, 0.023394, 0.044927, 0.064754, 0.05291, 6096e-6, 0.112413, 0.056786, 0.03025, 0.040814, -0.066562, 0.070827, 7546e-6, 0.099777, 0.01365, -6493e-6, -5978e-6, 0.036154, 0.030425, -0.020988, -0.020524, -0.023402, 9826e-6, 0.165502, 7128e-6, -1901e-6, -0.048585, -0.016282, -0.062929, -0.047027, 8234e-6, -0.108072, -0.075141, 5659e-6, -0.059577, 0.068533, -0.097876, 0.018624, 0.075343, -0.035194, 0.049075, -0.106161, -0.022171, -0.057686, 0.026828, -0.086774, 0.125023, 0.017602, -0.070727, -7685e-6, 0.030634, -0.01909, 0.037036, -8394e-6, 0.052792, -0.012903, -0.141563, 0.077419, -0.018905, -0.032801, 0.019138, -6247e-6, -0.076244, 0.048222, -0.02598, 0.092657, -2609e-6, -194e-5, -0.055117, 0.063628, 0.085908, -0.047332, -0.037299, -5718e-6, -0.05341, 0.036184, 0.075979, -0.033514, -0, -0.017925, 0.011333, -0.030472, 0.012669, 0.038661, -0.012844, -0.0133, 0.04687, -0.040241, 0.044164, -0.033375, -0.021579, -0.126379, -0.045276, 7054e-6, -0.064343, -0.035868, 0.094322, -0.039601, -0.022054, -0.07905, 0.029883, 0.022561, 0.011617, -3054e-6, 0.012586, -0.040557, 0.088027, 0.03406, -0.038988, 8175e-6, -0.012494, -0.041621, -0.058041, -0.02224, 0.079675, -0.031609, 0.013808, -0.018119, 7495e-6, 0.050869, 0.045932, 4847e-6, 0.061975, 0.029976, -0.019541, -5382e-6, 0.024264, 722e-6, -0.071079, 99e-4, 0.021299, 0.017787, -0.010869, -0.086414, 0.030104, 0.056313, 0.067584, -0.021971, -0.065613, 0.131368, 0.013667, 0.049956, 0.03811] },
|
|
4829
|
+
{ name: "vault_activity", category: "diagnostics", tier: 3, descriptionHash: "b43e89aabf57c0db", embedding: [-0.024522, -0.01357, -0.082647, -0.024311, -0.036474, -7136e-6, 0.0338, 0.012273, 0.02611, -1888e-6, 2807e-6, 0.019876, -7769e-6, 2233e-6, 0.039688, 9432e-6, 9513e-6, -0.024117, 0.046671, -0.041585, 0.026839, 9877e-6, 0.042467, 0.013828, 0.036469, 0.066492, -0.11567, -0.039366, 0.012897, -443e-5, -0.043935, 0.05451, 0.043872, 0.014646, 0.01296, 0.016026, 0.039013, 7825e-6, -0.024052, -0.027603, -0.06056, -0.040458, -0.03262, -0.011594, 5383e-6, -0.057748, -0.117356, -0.049267, -0.07456, 0.080765, 0.035152, -0.031865, 0.022268, 0.060339, -0.02452, 0.051521, 3716e-6, 0.039999, -4404e-6, 0.011707, 0.014159, 0.047644, -0.081623, 7873e-6, -0.071963, 0.099903, 0.041616, 0.019246, 0.086951, -0.112648, -0.070541, -0.046627, -0.032368, -0.023344, 1034e-6, -0.036015, -0.019702, -0.046197, -0.072756, -0.19144, 0.016944, 0.022783, -771e-5, 0.076334, -795e-6, 0.046199, -0.037943, -0.030229, 0.033066, 0.035036, 0.052277, -0.010916, -0.034585, -0.076355, -0.015565, -0.023716, -0.023944, -0.029558, 0.0531, 0.042216, 0.027352, 0.082783, 0.027107, -0.012372, 0.041789, 0.031594, -6435e-6, 0.017098, 0.018759, 0.031639, -7325e-6, 0.027447, 1328e-6, -0.04443, 0.095739, -0.031277, -0.074802, 0.022678, 0.018503, 0.133094, 0.121365, 0.048672, 0.012056, -0.044722, -0.024054, 0.063574, -0.04462, 0, 0.083035, -0.020958, -0.0562, 0.025658, 0.016349, 0.016363, -888e-6, 0.012517, -0.023569, -0.030828, 0.049774, 0.090584, -0.04736, 0.015142, 0.025121, 0.028336, -0.010509, 0.08337, 0.053967, 1944e-6, 0.014729, -6993e-6, 0.038966, 0.069992, 0.132015, 0.037266, -0.015234, -8119e-6, 5808e-6, -6171e-6, -0.017821, -0.051533, 0.040072, -0.058883, 0.03361, 0.053027, 0.034316, -0.037261, 0.015643, -0.078259, -0.017732, 18e-5, 0.011261, -0.107147, -0.076957, -9429e-6, -0.047158, 0.038962, 0.097271, 7449e-6, -0.056335, 0.03602, -0.022599, 0.034213, -0.032609, -0.04112, 0.045622, -9874e-6, 0.014559, 0.060896, 0.016142, 0.063442, -0.031342, -0.044712, -0.077359, -0.015809, -0.024357, 2172e-6, 0.027837, 0.030459, -0.127079, 0.0341, 0.016687, 0.01933, 2605e-6, -0.058524, -0.011674, 0.036574, -0.035518, -0.025775, -0.040423, -0.070719, 0.012624, 0.057197, -0.051132, 0.058379, 0.013557, -0.101526, -0.025735, -0.033877, -0.079829, -767e-5, -6584e-6, -1817e-6, -0.036999, -0, 0.010939, 6386e-6, -0.030548, 0.046843, 0.026344, 0.037909, -0.060842, -0.027336, -0.038056, -5277e-6, -0.032171, 0.044378, 0.023523, -0.048703, 0.047055, 0.024039, -0.046881, -0.054782, -1449e-6, 0.034056, -0.055432, -0.01798, 0.021438, 0.015767, 0.041222, -0.024324, -0.015207, -0.075561, 0.050936, -0.054984, 0.01693, -0.013991, 5557e-6, -0.025768, -5877e-6, -0.050733, 0.080526, -0.024047, -0.086666, -0.032162, 0.079292, 0.044563, -0.032238, -0.0257, -0.070121, 0.085888, -0.107463, 0.075819, -0.077672, -0.050187, 0.092724, -0.074026, 3636e-6, -0.05651, 7375e-6, 0.070373, -0.015875, -0.0653, -0.055736, -0.04808, 0.010904, 0.079532, -0.086315, 0.034328, 0.025845, -0.01255, 0.057492, 0.029756, -0.173926, 0.053209, 0.037574, -0.049544, 0.089917, -0.044175, 0.02529, 0.011093, -0.059945, -0.154626, -0.039741, -0.036493, 0.036945, -0.01556, 0.035924, -5809e-6, -0.044857, 0.051829, -0.019244, 0.06588, -0.037116, 0.03443, -0.06948, -0.034662, -0.067501, 0.070899, 0.067034, -0, 432e-5, 8817e-6, -0.029229, -0.0348, 0.041575, -0.022519, 0.068649, 0.134381, 0.020041, 0.054616, 0.062462, -0.090016, -0.087145, -0.082581, -2069e-6, -0.011155, 4109e-6, 0.032698, -0.059965, -0.093082, 0.021744, 0.03155, 0.034697, -0.082084, -0.016599, 9377e-6, -8551e-6, 0.1457, 0.072186, 36e-5, 3851e-6, 0.023565, 0.037428, -0.088631, 0.038148, 0.053758, -0.011897, -0.02445, 0.041048, 0.121165, -0.025262, -0.024501, -0.017159, 0.0474, -0.028584, -0.023143, -0.059319, 0.051097, 0.080525, -0.05491, -0.041057, -0.03369, 0.049878, 0.072661, -4071e-6, 0.108098, 0.068466, -0.027872, 0.073831, -0.038314, 0.068447, -0.058609, 0.023278, 0.059659] },
|
|
4830
|
+
{ name: "vault_add_task", category: "tasks", tier: 1, descriptionHash: "ec8fe27772bc48eb", embedding: [-0.021057, 0.080428, -0.041212, 0.057176, 0.017467, -0.039303, -0.070932, -7686e-6, -0.030967, -0.026596, -0.028696, -6763e-6, 0.043748, 0.096263, 0.110501, -0.040403, -0.046296, 0.048945, 0.016023, -0.054328, 0.099574, -0.023256, 0.047873, 0.086831, -0.042465, -0.058697, -0.055697, -0.025887, 2394e-6, 0.047534, 0.036648, -0.084693, 0.046396, 0.030836, 0.068309, 0.12688, 0.039622, 0.023216, 0.010361, -0.056945, 0.013858, -0.067537, -0.086597, -6198e-6, -0.026429, -0.136226, -0.040694, -0.049121, -0.019206, 0.066412, 0.03253, -0.069365, 0.012689, 0.027796, -0.065221, 0.137775, -0.034592, -0.03036, -0.032042, -0.081, 0.043763, -0.025927, 3056e-6, -0.072711, 0.035668, 0.043069, -0.017398, 0.056599, -503e-5, -7278e-6, -4712e-6, -0.033259, 0.031869, -0.036803, 0.041611, 0.019654, -0.083564, -0.038787, -0.029596, -0.083859, 0.010915, -0.018793, -0.055094, 0.059583, 0.031132, 0.022592, -0.010265, -0.04734, -9526e-6, -0.0687, 0.051432, -0.067705, -0.039615, -0.040623, 0.01519, -6192e-6, -0.025744, -0.058448, -9754e-6, 0.014241, -0.04439, 0.012966, 0.015778, -0.013967, 0.10051, 0.044475, -0.045982, 8247e-6, -0.058503, 7371e-6, 0.025486, 0.035552, 0.03647, 0.01369, 0.05093, -7182e-6, -0.018772, 0.040015, -0.025026, 0.071791, 0.208671, 0.025091, -1961e-6, -0.037902, -2768e-6, -0.055092, 0.027588, -0, 0.115289, 0.012154, -0.022703, 0.023389, 0.063659, -0.02774, -0.026205, 0.022477, -0.021396, -0.015998, 0.037367, -0.039694, 872e-5, 0.011393, -0.036487, -0.033096, -0.014181, 0.016032, 0.091255, 0.034114, -0.022049, 0.04908, -0.035036, -0.030332, 0.08378, -0.035518, 0.025591, -0.038564, -0.126722, -0.010002, 0.013057, -0.014479, 6235e-6, -0.024029, 0.014618, 0.068052, 0.0664, 1878e-6, -0.010381, -0.073511, 0.085405, -6934e-6, 0.044107, -0.035686, -0.023936, -53e-4, 0.052257, 1871e-6, 0.104266, 514e-6, -0.024352, 9329e-6, -0.073414, -0.126581, 4324e-6, -0.095363, 0.021047, -0.026001, 0.042093, -0.068075, 0.021017, -0.059815, -0.059491, 0.080293, -0.101255, -0.023251, -0.035003, -3195e-6, 0.022475, 0.051419, -0.062935, 0.055278, -0.082636, 0.029871, -0.020056, -0.039692, 0.017582, -0.013062, -0.037283, -0.01606, 0.045403, -0.093259, -0.025324, 0.052207, 0.084871, 0.085631, -0.037681, -0.010497, -0.018932, -0.154491, -0.026963, -0.065572, 0.038753, -6416e-6, 0.034073, -0, 0.099561, -0.041124, -0.034836, 0.064828, 0.036666, 0.01247, 0.052388, -0.012896, -0.08615, 0.120119, -0.0453, 0.043913, -0.02957, 0.038203, -0.028294, -0.010848, -0.0747, 0.019055, 0.056193, 5724e-6, -0.060326, 0.023951, 0.022347, 0.031111, 0.089598, 0.012097, 0.018445, -0.032821, 0.049943, -0.065641, -0.04862, 2106e-6, 7041e-6, 5058e-6, 0.036085, -0.014569, -0.013651, -0.025033, -0.043196, 0.038365, 0.07679, -0.013765, -0.015674, -0.013635, -0.014389, 0.057328, 0.090222, 0.028369, -0.096453, 1179e-6, 0.030621, -0.03457, -0.030955, 0.027044, 0.05088, 0.041244, 602e-5, -0.048515, -2146e-6, -0.017457, 94e-5, 0.092279, 0.043433, 0.012131, 0.033838, -0.102399, -0.011354, 0.016736, -0.097471, 0.045269, -4574e-6, -0.028309, 0.111328, -0.023306, 0.032976, -0.038935, -0.038304, -0.03749, -0.012197, -5092e-6, -0.061786, -0.067218, -0.068636, 8498e-6, -0.016147, -0.016881, -2824e-6, 0.147753, -0.061306, 0.072581, -0.022229, 0.026788, -3021e-6, 9903e-6, 0.030458, -0, 7141e-6, 0.037372, -0.106199, -0.080771, -0.043535, -0.022821, -0.028463, -0.0128, 0.015947, -0.011398, 0.054765, -0.042534, -0.030189, -0.026771, -0.05976, 0.048834, -0.038428, 0.070293, -0.011027, -0.050635, -0.010996, 0.059031, 312e-5, -0.054179, -0.02102, 0.093523, -0.029776, 0.141759, 0.053247, 6496e-6, 0.035877, -0.035247, 0.01696, -0.024071, -0.010855, 0.029737, 0.021352, -0.020001, 0.068506, 0.056164, 0.023918, 429e-6, 71e-5, 0.02782, 0.037736, -0.032056, -0.113535, 0.0444, 0.028002, -0.042762, -0.020411, -0.036139, 0.038409, 0.018438, 9555e-6, 0.044189, 0.103237, -0.092877, 0.011917, -366e-5, 0.100668, -0.063677, 0.023517, 6521e-6] },
|
|
4831
|
+
{ name: "vault_add_to_section", category: "write", tier: 1, descriptionHash: "d64d6f3b3c3e85fd", embedding: [-0.027776, 0.10961, -1064e-6, 0.071895, 0.049015, -2634e-6, -0.052125, 8904e-6, 0.031158, -0.038426, -9164e-6, -0.028442, 0.042363, 0.01223, 0.080092, -0.044533, -0.074778, 0.021443, 9238e-6, -0.045788, 0.073754, 0.01213, 0.059668, 0.071652, 9402e-6, -0.020793, -0.071058, 0.013407, 0.041528, 0.035996, 0.023217, -0.047774, 0.029557, 0.035661, 0.098667, 0.056735, -3793e-6, 0.03839, 0.018953, -0.021461, 2961e-6, -0.053258, -0.07169, 7825e-6, -0.023297, -0.137779, -0.08296, 5328e-6, -0.033461, 0.042375, -8223e-6, -0.101084, -0.01685, 0.028911, -0.052567, 0.141515, -0.05881, 0.011062, -0.050014, -0.07558, 0.056085, -2437e-6, 0.016719, -0.081698, 0.02604, 0.052428, 4351e-6, 0.095835, 0.015916, 0.083359, 0.024242, -0.040829, 394e-6, 0.026802, 0.018461, 0.015929, -0.063363, -0.010323, -0.093177, -0.025463, 9113e-6, -0.022272, -0.06864, 0.021236, -0.043385, -539e-5, -0.020209, -0.024017, -0.01662, -0.052015, -9761e-6, -0.039442, 0.015331, -0.092077, -0.010411, 0.021884, -0.017295, -0.077103, 0.032614, -0.013118, -0.034712, 0.026121, -4634e-6, -0.011274, 0.113933, 0.034816, -0.048565, -3821e-6, -0.107578, 0.039095, 0.042872, 0.097864, 0.069688, -0.039363, 0.051827, 9813e-6, 0.021074, 1799e-6, -0.018871, 0.051622, 0.215305, 0.010989, 0.012038, 997e-5, -0.039332, -0.077332, 8947e-6, 0, 0.104989, -6142e-6, -0.069812, 0.067309, 0.044376, -263e-5, -0.027932, -0.01698, -0.029797, -0.022653, 0.055529, -0.078735, 3605e-6, 7679e-6, -0.059305, 7677e-6, -8312e-6, 0.039047, 0.101873, 0.021151, -0.023756, 1182e-6, -0.010044, -0.043806, 0.076717, 9468e-6, 2279e-6, -0.036202, -0.109153, -0.036171, 0.034353, -0.024381, 0.058732, -0.056239, 0.033188, 0.031642, 7161e-6, -0.010258, -9115e-6, -0.014273, 0.074113, -0.010349, 0.035249, -0.099077, -0.022727, 0.025581, 0.067025, 0.018691, 0.041095, -0.078937, 0.028422, 0.04306, -0.059588, -0.069161, -6364e-6, -0.083515, -0.020491, -0.101111, 0.02808, -0.026472, 0.079744, -0.021372, -0.044788, 0.066489, -0.128621, -8319e-6, 0.022353, -0.015196, 5847e-6, -6455e-6, -0.021034, 5494e-6, -0.070324, -0.015948, 8774e-6, -0.076948, -0.017035, 0.031342, 0.011578, -8333e-6, 0.025501, -0.111712, 9451e-6, 0.045041, 0.118754, 0.054019, 0.034781, -0.027157, -0.055844, -0.107667, -0.058946, -0.121929, 0.03157, -0.045722, 0.075494, -0, 0.128278, -0.034884, 6345e-6, 0.059039, -0.028813, 0.019349, -5013e-6, 0.026282, 5528e-6, 0.080691, -0.030438, 0.040241, -0.015297, 3653e-6, -0.055899, 0.019311, -0.100982, -0.057396, 0.011769, 0.024457, 2446e-6, -0.080323, 8201e-6, 0.066275, 0.055711, 0.019664, -4803e-6, -0.014648, 706e-5, -0.08042, -0.039356, 3136e-6, 5073e-6, -0.06809, 0.028619, -0.016175, -0.010903, 2523e-6, -0.0223, 0.085546, 0.081971, -0.017441, -0.059064, -0.047425, -0.081111, 0.020907, 0.091694, 0.087361, -0.011765, -0.012593, 8704e-6, -0.055054, -0.01892, 0.038368, 0.054695, 0.092939, -2225e-6, -1289e-6, -0.012703, 6836e-6, -0.013443, 0.064351, -8533e-6, -0.055227, 0.015771, -0.08222, 8584e-6, 0.018637, -0.125649, 0.034794, 0.026481, -7971e-6, 0.086761, -0.048123, 4169e-6, 0.040023, -0.041421, -0.028434, 9954e-6, -0.017142, -0.078367, -0.029706, -0.075257, 0.03561, 636e-5, -0.012314, -0.032894, 0.091113, -0.053756, 0.052926, -0.044473, -4965e-6, 0.027719, 0.028877, 3667e-6, -0, 0.010645, 0.039899, -0.105849, -0.0906, -0.016979, -0.046884, 0.020687, -0.056692, 0.020297, 6159e-6, 0.057415, -0.037255, -0.076415, -0.028655, -0.080159, 0.033772, -0.071963, 0.017914, -0.037475, -0.064697, 6562e-6, 0.033706, 0.010671, -0.043805, 0.013968, 0.081877, -0.011949, 0.104161, 0.071768, 9884e-6, 0.056854, -0.050364, 0.024151, 0.011216, 933e-6, 0.026475, 0.085598, -0.039919, 0.013714, 0.036453, 0.041258, -0.023938, -0.018033, 0.017053, 0.035984, -0.029963, -0.071286, 0.028002, 0.018325, -2847e-6, -0.017774, -0.030856, 0.04431, 0.027584, 5713e-6, 0.028306, 0.128636, 0.019866, 0.076563, -0.013087, 0.078017, -0.069054, 0.07221, 9443e-6] },
|
|
4832
|
+
{ name: "vault_create_note", category: "write", tier: 1, descriptionHash: "976e8f6c9779100e", embedding: [-0.038007, 0.031643, -0.053949, 0.049494, -3301e-6, -0.011985, -0.035404, 0.048044, 8133e-6, -0.035937, -0.018118, -0.024931, 0.048623, -0.025248, 0.06373, 0.114239, -0.051579, 0.031826, 0.020911, -0.03625, 0.068138, 9642e-6, 0.083419, -4546e-6, -0.033954, -0.065038, -0.052131, 0.027387, -16e-6, 9649e-6, 0.040109, 0.014585, 0.05342, 0.077054, 0.074282, 0.155362, -816e-5, 0.035116, -2688e-6, -0.064927, 0.042824, -7731e-6, -0.055975, 0.021894, -0.014929, -0.123006, -0.042962, -0.024465, -0.018337, 0.059457, -0.061466, -0.079705, -0.072155, 0.026315, -0.06793, 0.107854, -0.073484, 6344e-6, -0.08797, -0.085339, 0.081505, -0.011273, -1801e-6, -0.085019, 0.012028, 0.051496, 5253e-6, 0.083361, 0.026909, -0.051196, 0.08136, -0.027693, -0.074281, 0.030427, 0.023619, -0.019757, -0.041307, 0.021342, -0.06253, -0.046233, -0.012119, 264e-5, 0.017652, 0.025387, 0.017972, 0.053608, -0.011497, -0.073198, -0.025554, -0.010874, 0.015992, -0.105501, 0.053075, -0.053525, -0.010075, 0.050245, 0.021417, -0.069418, 0, 0.017587, -0.053883, 0.048544, 0.059614, 0.053893, 0.066972, 0.044067, 0.026663, 0.026338, -0.078108, 5516e-6, 0.024266, 0.065954, -0.015603, -0.033237, 0.023134, -0.020903, -0.110677, 4248e-6, 0.019334, 0.031038, 0.162486, -0.013435, -0.039274, -0.020436, -0.056894, -0.113008, -0.053858, 0, 0.084504, 0.097026, 5433e-6, 0.05941, 0.040992, 0.01239, 8256e-6, 0.050092, -0.027638, 0.019023, 0.010169, -0.037598, 3811e-6, -0.044603, -0.080828, -0.017392, -0.02998, 0.068655, 0.039874, -3546e-6, -6279e-6, 0.122286, -0.059529, 3268e-6, 0.031842, 4303e-6, -4965e-6, -0.035879, -0.030705, -2964e-6, -0.032066, -0.024981, 0.07948, -0.016155, 0.051419, 0.048698, -0.038944, -0.046511, -0.015157, -0.057145, 0.066156, 8869e-6, 0.058576, -0.057982, -0.083759, 0.020246, 5963e-6, 0.033515, 0.071556, 0.034878, -0.084671, 8392e-6, -0.056103, 0.04938, 5558e-6, -0.089095, 1e-4, -0.020482, 0.019559, -0.037084, 0.019332, 0.056787, -294e-5, 0.0619, -0.08912, -0.048501, -0.027436, -0.029905, 0.117906, 0.039295, -0.019505, 0.102399, -0.063962, 0.033189, -0.02724, -0.095888, -1415e-6, 0.021811, -0.017079, 1528e-6, -0.033935, -0.091311, -0.064592, 0.114031, -0.011588, 0.05414, 0.038626, -0.064396, -0.012789, -0.05438, -0.047154, -4194e-6, 0.016678, -0.027112, -0.021493, -0, 0.080952, -0.069847, -3297e-6, -6712e-6, 5073e-6, 0.029078, 0.063798, 0.030659, -0.070746, 0.077557, -0.038169, 0.037709, 0.019015, -0.056143, 0.030732, -4343e-6, -0.028727, -0.067535, 5975e-6, 0.023723, -0.07937, 0.017554, -0.012249, 0.111058, 0.023019, -0.010639, 0.020028, -5853e-6, 0.023296, -0.037368, -0.016589, 0.021336, -0.04876, -4164e-6, -0.041778, -0.080368, 0.012642, -0.037895, -0.054345, 0.022137, 0.06985, -3363e-6, -0.076654, 5172e-6, 1627e-6, -0.040003, 0.056126, 1442e-6, 0.014196, -0.031711, 0.045697, -0.08417, -0.023495, -0.070967, 2858e-6, 0.041957, 0.087349, -0.071447, 0.025057, -0.022968, 3284e-6, 0.084769, 0.017629, -6342e-6, 0.023391, -0.145482, -0.025938, 0.039566, -0.142993, -0.01422, 1041e-6, -0.02119, 0.091534, -0.011249, 0.053804, -0.040227, 8214e-6, -0.082701, 0.010576, -0.054984, -0.031323, 6343e-6, -0.010165, 0.106665, -3195e-6, 3518e-6, 0.014146, 0.093929, -0.076938, 0.03548, -0.04877, 1688e-6, 732e-6, 0.052645, -0.031262, -0, -0.168214, 0.061321, -0.060672, -0.012871, -0.039233, -0.039775, 0.030124, 19e-6, 0.021343, -414e-5, 0.024866, -1619e-6, -0.104208, -0.019847, -0.024609, -0.01121, -0.044339, 0.04444, -0.029355, -0.024979, -4062e-6, 0.027153, -8563e-6, -0.045556, 0.04457, 0.065932, -0.02921, 0.092138, 0.026042, 0.01704, 0.022178, 2195e-6, 0.086124, 0.028837, -2862e-6, 0.045792, 0.091781, 1409e-6, 0.016542, 0.065781, 0.056125, 0.035975, -0.031942, 0.054495, 0.036548, -0.027775, 0.010375, -1753e-6, 0.053561, -0.02731, -0.010232, -0.042476, 0.033656, -763e-6, -0.028332, 0.018966, 0.106421, 0.015928, 0.057281, -0.019595, 0.122239, -0.025005, 0.066283, 0.049562] },
|
|
4833
|
+
{ name: "vault_delete_note", category: "note-ops", tier: 3, descriptionHash: "d8d568b404f90cdf", embedding: [-0.041256, 0.055568, -0.052515, -0.029843, -0.010466, -0.030857, -0.035639, -0.041359, 0.069643, -0.022673, 0.057174, 0.035086, 0.02193, -0.017416, 0.045524, -0.014859, -0.071703, 0.054576, 0.016719, 0.026702, 0.052294, -0.043044, 0.048936, 0.05307, 0.06035, 0.025952, -0.071564, -1919e-6, -0.022999, 0.011323, -2695e-6, 0.023364, 0.045549, -0.039831, 0.040573, 0.120548, -0.046152, -0.017108, -2838e-6, -0.031039, 0.025814, 4949e-6, -0.0896, -0.069751, 7059e-6, -0.032831, -0.11498, -0.026608, -0.060921, 0.029859, 0.033166, -0.047603, -0.074576, 0.081827, -0.035054, 0.046778, 0.063348, 0.053294, -0.049994, -9892e-6, 0.069923, 0.082281, -0.011416, -0.066284, -0.030906, 0.089322, 0.063609, 0.014736, 0.059197, -0.048486, 9701e-6, -0.06257, 3851e-6, -0.014079, 928e-6, 0.048361, -0.010186, 5273e-6, -0.110149, -0.027817, 0.040495, 7468e-6, 6497e-6, -0.016722, -0.043396, 0.037038, -0.068985, -0.095197, 0.04281, 0.019159, 0.033165, -0.017351, 0.020641, -0.024027, 0.050953, -0.012655, -0.059806, -0.040303, 3865e-6, 1072e-6, 0.018337, 0.062248, -4416e-6, 0.103838, 0.041118, 0.053048, -0.022929, 0.043497, -0.047536, -0.050436, 2591e-6, 0.01352, 0.064374, 0.058462, -0.011404, 0.028739, -0.062549, 0.099167, -0.019838, 0.096869, 0.136295, -9897e-6, -0.016776, 9525e-6, -0.082951, -0.010842, 0.022827, -0, 9285e-6, -3339e-6, -0.073249, 0.031992, 0.093773, -0.021981, -0.021785, 0.016511, -0.024176, -0.019694, 0.061855, -0.082538, 0.036701, -0.035144, -0.019792, 2533e-6, 0.026521, 0.03813, 0.103616, 1599e-6, 0.070332, 0.094917, -8398e-6, -0.015794, 0.064264, 8657e-6, -0.026572, -0.085524, -0.067176, -0.02472, -5914e-6, -0.013641, 0.029963, -0.027646, 335e-6, -0.011278, -653e-5, -0.054728, -0.025588, 2001e-6, 0.099312, 8327e-6, 0.013226, -0.019705, 0.024297, -3818e-6, 0.042157, 0.066407, 0.070954, -0.014425, 0.051166, 0.016193, -0.031319, 0.01038, -0.048155, -0.089119, 0.028967, -0.07149, -0.054745, -0.080998, 0.021452, -4644e-6, -0.055472, 0.08445, -0.055171, -0.041052, -0.113038, -0.029511, 4282e-6, -0.064063, -0.040146, 0.039286, -7189e-6, 0.020158, -0.053078, -0.066878, -447e-6, 0.052029, 0.032527, -0.02757, -2716e-6, -0.023375, -0.010149, 0.049629, 0.018516, 0.033023, 0.033296, -0.136799, 0.060711, -0.0505, -0.075308, -0.032575, 0.014335, -0.031936, 0.010088, 0, 0.063777, -5494e-6, -0.038264, 8141e-6, -0.02244, 0.079573, -0.018545, 0.075375, -0.080533, 0.016442, -0.065859, 0.057539, 0.047664, -0.020565, 0.027291, 5977e-6, -0.049454, -0.060594, -0.070998, 0.0267, -8592e-6, -0.067271, 0.032267, 0.118997, 0.056334, -0.061965, -0.048371, -95e-5, 0.053667, -0.011339, -0.027826, 4631e-6, 6282e-6, -0.101158, 0.08185, -0.031884, 0.024762, -0.054751, -0.052423, 0.051638, 0.034028, 7698e-6, -0.05118, -0.04939, -0.023362, 0.073172, 0.068756, 0.067347, -0.033787, -0.012652, 0.03676, -0.079419, -7011e-6, -0.034703, 0.027251, 0.087612, 0.070535, -0.011318, -0.031694, -0.090157, 0.079602, 0.074187, -0.056348, 0.024956, 0.019042, -0.048914, 0.010775, 0.05215, -0.127172, 0.055093, -0.026364, 0.049988, 0.03421, -0.044014, 0.043329, -0.040129, -0.040884, -0.119641, -0.041518, -0.038579, 0.034183, -7422e-6, 3401e-6, 0.025444, -0.071451, -4095e-6, -1436e-6, 0.016914, -0.071871, 0.054836, -0.028871, -0.067234, 0.090556, -0.024236, 0.025999, -0, -0.016351, 0.045936, -0.053187, -0.018377, 0.026036, -0.062203, 0.03518, 0.076659, 0.075862, -0.014066, 0.038724, -0.056643, -0.111023, -0.100737, -0.08153, -0.054742, 4149e-6, 0.054427, -8407e-6, -0.04891, -0.053577, 0.03357, -908e-5, -0.06823, 0.024522, -4906e-6, 0.074574, 0.115306, 0.056858, 0.032096, -8526e-6, -0.03986, 0.132349, 0.013211, -0.029908, 0.043486, 0.087066, 0.04849, 0.031122, 0.095771, -0.033835, 0.105855, -0.046603, 0.035464, -0.033865, -0.093349, -0.026505, 0.011615, 0.020966, 0.023406, -0.034707, 0.028779, -0.067129, 0.072551, -0.013213, 0.022818, 0.0881, -2012e-6, 159e-5, -0.029376, 0.095343, -0.020241, 0.074359, -0.033948] },
|
|
4834
|
+
{ name: "vault_entity_history", category: "diagnostics", tier: 3, descriptionHash: "52d3d69586ee5b09", embedding: [-9053e-6, 7554e-6, -0.062576, -0.026947, 758e-6, -0.027651, -0.09237, 0.016255, 0.053076, -0.022999, 9575e-6, -9124e-6, 0.015107, -0.011573, -0.038623, 8455e-6, -0.076031, 0.055598, -0.026753, -0.063407, -0.019994, -6e-6, 0.036533, 0.01154, -6142e-6, -0.017859, -0.093014, -1253e-6, 6248e-6, -0.084264, -0.014842, 0.044572, -0.010163, 0.061911, 0.016162, 0.052087, -4425e-6, 4217e-6, -0.019424, -0.075923, -0.044209, -0.062238, -0.021726, 0.029471, -0.024291, -0.013293, -0.052287, -0.037824, -0.117022, 0.078449, -0.033546, -0.059108, 0.033066, 0.073779, 564e-5, 0.108016, -8106e-6, 0.017024, -0.065946, -0.026521, 0.011202, 0.058255, -0.056936, 1015e-6, 9453e-6, 0.064349, 0.099366, 0.018928, 0.108934, -0.067679, 0.042323, -0.045295, -0.046036, 8673e-6, 168e-5, 0.071697, -8721e-6, 0.045367, -0.063819, -0.083386, 0.020063, 0.061702, -5905e-6, -0.021833, -6857e-6, 701e-5, 0.022783, -7093e-6, -0.038978, 0.0276, 0.012087, -0.042906, 0.12051, -6891e-6, 0.015604, 0.04656, 0.022551, -0.124846, 0.078115, 0.048646, -0.014352, 0.060967, 5398e-6, 0.032842, 0.057244, -0.012372, -0.03304, 0.035065, -0.032996, 0.035806, -0.021549, 0.049095, -0.023877, -0.070214, 0.053891, -0.044358, -0.118001, 0.045402, 0.020408, -9778e-6, 0.119938, 0.035303, 0.023661, -0.045597, -0.069449, -0.020759, -0.022747, 0, 0.087306, 0.01153, -0.021769, 0.047014, -0.024196, 0.02258, -5193e-6, 318e-6, -0.045322, -0.017377, -8272e-6, 0.033204, -0.058661, -0.052684, 0.024435, -0.010808, -0.056091, 0.123007, 0.076492, -4846e-6, -0.016545, 0.041568, -0.014286, -0.049918, 0.125927, -957e-6, -0.03435, -0.021761, -0.080688, -3066e-6, 474e-6, -0.012715, -0.036486, 6824e-6, 0.077335, 0.021192, 0.068085, -0.111347, 0.018201, -0.045856, 0.025847, -0.02372, -0.03625, -0.078053, 0.014148, -0.012533, -136e-5, -0.082746, -0.023427, -8939e-6, -863e-6, 0.027619, -0.036318, -0.04397, -0.027682, -0.073698, 3156e-6, -0.046358, 7648e-6, 0.086897, 0.093029, -0.030675, 505e-5, -0.054927, -0.064728, 3066e-6, -0.059782, -0.031963, 0.041496, 0.038387, -0.043436, 0.059467, -9599e-6, -7125e-6, 5749e-6, -0.044009, -0.024718, -2302e-6, -0.047867, -8626e-6, -0.021736, -0.060124, -0.071537, 0.055495, 0.015452, 0.016386, 0.055173, 1448e-6, -0.044378, -0.059921, -0.017403, -0.012111, 0.078813, 0.012044, -2279e-6, -0, 869e-5, -0.053567, 22e-5, 0.047583, 0.061887, -0.068997, -0.094651, 0.029629, -0.090356, 0.017733, -0.01298, -0.016409, 0.038748, -0.078422, 0.016175, 0.018837, 0.010454, -0.147153, -0.015698, 0.109764, 0.024577, -0.033395, -0.09457, 0.052476, 0.040071, 0.01947, 0.085848, -0.011829, 0.057067, -0.049737, -2002e-6, -0.014788, 272e-6, -6187e-6, -0.029921, -0.083373, 0.071698, -0.124512, -0.072169, -0.053773, 0.030409, 0.019125, -0.088267, -0.028777, -0.036681, 0.02806, -0.018499, 0.089757, 0.077874, -0.055724, 0.049793, 3532e-6, 0.060872, -0.039349, 0.02245, 0.065674, 1874e-6, -8724e-6, 0.037737, 4534e-6, -2913e-6, 0.080783, -0.012754, 0.034452, 0.031151, -0.031138, 9708e-6, -0.022737, -0.184369, -0.020887, 0.054637, -0.025778, 2244e-6, 0.015753, 0.055771, -0.056477, -0.017767, -0.067073, 0.026688, -0.050442, -0.071565, 0.046209, 0.025672, 0.034922, 0.03799, 0.026611, 0.020817, 0.027453, -2905e-6, -0.072135, -0.034797, -0.080335, -0.103323, 0.06323, 0.030891, -0, 2337e-6, 0.057604, 7881e-6, 0.036763, 0.086864, -0.02319, 0.064555, 0.119014, 0.043005, -0.025391, -3011e-6, 8932e-6, -0.065723, -0.033514, 0.058786, -0.028015, -0.059902, -0.02592, -0.037453, -0.041617, -0.02686, 0.028687, 0.029714, -0.094025, -5428e-6, 0.046618, 4551e-6, 0.169602, 0.101732, -0.024569, 0.048514, 6132e-6, 0.048981, -0.056874, -0.029642, 0.07074, 0.037931, -0.022564, 0.026255, -129e-6, 0.022805, -0.01602, 0.013235, 0.089561, 0.012789, 844e-5, -0.034803, -595e-5, -1971e-6, -0.113023, -0.029508, -0.041323, 0.053345, 0.080051, 0.041186, 0.057595, 0.064782, -0.019408, 0.090985, 3508e-6, 0.125835, -0.095501, 0.023163, 0.05998] },
|
|
4835
|
+
{ name: "vault_growth", category: "diagnostics", tier: 3, descriptionHash: "ea33cfa44ce283ca", embedding: [0.010212, -0.023282, -0.054745, 5933e-6, -7845e-6, -0.071654, -0.080218, 0.032212, 1137e-6, -0.014297, 0.027014, 0.010629, 0.037964, 0.020021, -0.053045, 277e-5, -0.075186, 8755e-6, -0.016831, -0.063945, -9352e-6, -0.058244, 0.056878, 0.015225, 0.031174, -0.012638, -0.117867, -7691e-6, -227e-6, -0.027465, -0.01993, 0.064839, 0.04478, 0.02603, 0.048318, 0.0638, 0.035896, 0.020142, -0.048743, -2057e-6, -0.020633, -0.078386, -0.029199, -3421e-6, 0.032656, -0.05814, -0.076614, -0.01465, -0.080692, 0.013451, 0.011997, 0.010641, 0.026754, 0.088171, -0.045523, 0.048191, -0.045816, -3109e-6, -0.053512, -0.054062, 0.035272, 0.057675, -0.065134, -0.038338, 0.049382, 0.072777, 0.070045, 0.045531, 0.077974, -0.030568, -0.025559, -8879e-6, -0.029219, 0.03332, 2863e-6, 0.040405, -0.017241, 0.025442, 0.022472, -0.087973, 0.066901, 0.024441, -0.046689, -5586e-6, -0.055438, 0.032993, -0.020549, -0.043909, -0.01675, -0.01334, 0.066053, 0.031248, -0.015986, -0.016711, 3827e-6, 3081e-6, -0.080629, -0.122194, 3999e-6, 0.010471, -0.013571, 0.044081, 0.086965, 0.01332, 0.038228, 0.019877, 0.017824, 0.104018, 0.026501, 0.050822, 8131e-6, 0.020253, 0.014512, -0.03332, 0.077264, 0.049157, -0.082856, 0.0194, 842e-6, 0.080472, 0.153367, 0.035031, 0.050504, -0.085582, -0.031463, 0.011784, -0.022671, 0, 0.032576, 0.018177, -0.026074, 0.090239, -0.027332, -0.025743, -505e-5, -7175e-6, -0.044104, 0.012721, -8502e-6, 0.05787, -0.06258, -0.054998, 0.068718, -4343e-6, -0.022714, 0.116912, 0.026417, -1458e-6, 0.038316, 0.02692, 0.052342, 6977e-6, 0.154357, -0.032412, -0.011592, -0.026199, -0.091979, -7058e-6, 0.043346, -0.018641, -0.011824, -0.086675, 0.051354, -0.015947, 0.074389, -0.033811, 0.039419, -0.065254, -7543e-6, -896e-5, 0.042333, -0.059957, -1127e-6, 0.023479, 0.049734, -0.078694, -0.039502, 0.049166, 0.014291, 0.032003, -0.091079, -0.02723, -0.027406, -0.01837, 5302e-6, -0.0586, 6669e-6, 0.055676, 0.045257, -0.035234, -0.016416, -3101e-6, -0.085177, -0.024479, -0.038776, 0.038581, 0.040364, 0.091632, 417e-5, 4044e-6, -0.014926, -154e-6, 8387e-6, -0.062627, -5585e-6, 6889e-6, -0.051321, 343e-6, -0.02299, -0.065407, -1451e-6, 0.032352, 0.035249, 0.026246, 0.032531, -3784e-6, -0.014979, -0.056229, -0.01081, -0.028557, 0.048278, 6108e-6, -0.019161, -0, 0.04116, -7916e-6, -0.014931, 0.033917, 0.025237, -26e-5, -0.099946, 0.041294, -0.042838, 0.011061, -0.050761, 0.097352, 0.023666, -0.041521, -3835e-6, -0.013885, 0.014656, -0.081912, 6786e-6, 0.080258, 6093e-6, -0.010653, -0.07523, 0.064403, 2689e-6, 0.028262, -6871e-6, 0.014181, 0.076114, -0.02557, -6041e-6, 1629e-6, 0.050978, 0.020127, 8971e-6, -0.080643, 0.074674, -0.125938, -0.090459, -0.047723, 0.04686, 0.032625, -0.052108, -0.0832, -0.051314, 0.038598, 0.038469, 0.035769, -911e-6, -0.069765, 0.091964, -0.010878, 0.015162, -0.01102, -2575e-6, 0.093173, -0.034841, 0.022838, -0.050497, 0.043609, 7573e-6, 0.03366, -0.076857, -0.015095, -0.012934, -0.043752, 0.037005, 0.011717, -0.214006, 0.019895, 0.055903, -0.028198, 0.038122, -0.029413, -0.051939, -0.056272, -0.023675, -0.066625, 0.017698, -0.049611, -0.09452, -0.022796, 0.028624, 0.029529, -5715e-6, 0.017743, 0.041763, -91e-5, -0.017637, 795e-6, -0.048532, -0.076713, -0.139918, 5641e-6, 0.081114, -0, 0.022408, 0.093137, -0.038968, 208e-6, 0.081343, -0.059103, 0.068391, 0.149652, 0.040727, 0.021844, 0.019332, -9618e-6, -0.084253, -0.029762, 0.046795, -0.040979, -0.117164, 0.021964, -0.06647, -0.056581, 565e-6, 0.040034, 0.055722, -0.073841, -0.039038, -0.030172, 0.022483, 0.119289, 0.042021, -0.035277, 0.061473, -0.022867, 0.025096, -0.05727, 2616e-6, 0.110579, 0.024783, -3399e-6, 0.036286, 0.061912, -0.0331, -0.04295, 0.054657, 0.029491, -0.044126, -0.031116, -0.108867, 0.059479, 0.057589, -0.097099, 0.044404, -0.066436, 456e-6, 0.042211, 0.100352, 0.053249, 0.027353, -709e-6, 0.057831, 0.048799, 0.130684, -0.117105, -0.025711, 0.021223] },
|
|
4836
|
+
{ name: "vault_init", category: "diagnostics", tier: 3, descriptionHash: "7b25e3ce07a0b3b3", embedding: [-4962e-6, 0.013656, -0.091038, -9363e-6, 0.014769, -0.047191, -0.040342, 0.02735, -0.081329, -0.051737, 0.075302, -0.014934, 0.033553, -0.02814, 0.023223, 0.050113, -0.047805, 0.073093, -4814e-6, -0.050932, 0.040767, -0.035141, -0.010344, 0.048331, -0.070631, -0.034141, -0.093501, 8784e-6, -0.010344, -0.04289, 2233e-6, 0.066277, -0.027825, 0.020864, 0.052116, 0.091524, 0.059158, 3389e-6, -0.05968, -0.082111, 0.03382, -0.092473, -0.065345, 0.02688, 0.022003, -0.018841, -0.019774, -0.034697, 0.01604, 0.018274, 6149e-6, -0.039903, 0.077832, 0.06162, -0.034104, 0.061627, -0.028115, 0.042516, -0.014392, -0.076663, 0.028663, 0.084867, -0.032, 0.023814, -1557e-6, 0.045624, 0.072489, -2904e-6, 0.07175, -0.03703, -96e-5, -0.090522, -0.021332, 0.038161, -0.031325, 0.038372, 6351e-6, -4333e-6, -0.065038, -0.029437, -0.017984, 0.03071, 0.022921, 0.028856, 0.021726, 0.08724, -0.038794, -2994e-6, 0.013347, 0.020045, 6166e-6, -0.052632, -0.041296, -0.070097, 0.054826, 0.048548, 7797e-6, -0.165344, -6069e-6, 0.01353, -0.048942, -0.011978, 0.082871, 0.0295, -0.016719, 0.04855, 0.03738, 0.013481, -0.042922, -5719e-6, 0.012477, -6724e-6, 0.073088, -0.040598, 0.013395, 0.035835, -0.127517, 0.044926, 573e-6, 0.048161, 0.140123, 0.022135, 0.092223, -0.062925, -0.063837, -0.023694, -0.069643, 0, 0.041695, 0.032061, -0.011319, 0.106329, -0.018426, -0.014194, 0.073033, -0.040369, -8904e-6, 0.059023, 0.033752, 8897e-6, -0.018045, -0.074844, 452e-6, -0.037566, -0.036617, 0.040028, 0.052541, -0.013087, 0.040635, 0.027233, -0.046271, -0.04037, 0.110887, 0.028343, -0.025397, -0.048916, -0.029405, 0.032389, 0.033518, 0.012821, -0.047125, -0.016151, 0.012374, -0.027546, -0.015021, -0.024903, -0.064991, -0.044776, 0.018006, -0.067197, 0.016603, -0.107787, -3557e-6, -8487e-6, 0.046601, 0.021188, 0.111787, -2349e-6, 3805e-6, 6891e-6, -0.048021, -0.078227, -0.011278, -0.026791, -0.019899, -0.063616, -0.011174, 0.010187, -0.016967, -0.042075, -0.085463, 808e-5, -0.042828, -0.07833, -0.13781, -0.057839, 0.017188, 0.02973, -0.077922, -0.016614, -0.020391, 0.068644, 0.013843, -0.020871, -0.01679, -0.01337, -0.063906, 9651e-6, 0.010991, -0.070255, -0.048025, 0.063717, 0.09188, 0.055274, 259e-6, -8534e-6, -5888e-6, -0.09606, -0.038815, -0.031108, 0.060251, -0.031676, 852e-5, -0, 0.046539, -0.029947, 0.018607, 0.054057, 0.014443, 0.053761, 9455e-6, -0.044096, -0.073886, 7843e-6, -0.017893, 0.075603, -218e-5, -0.024458, 0.052076, 4365e-6, -0.049438, -0.041997, 0.082765, 0.111617, 0.081454, -0.040948, -0.049968, 0.090287, -9181e-6, -0.01004, 0.066558, 0.041809, 0.021484, -0.011082, 0.063182, 0.018375, 7711e-6, 0.052155, -0.013441, -0.024703, 0.026208, -0.114925, -0.101707, -0.012718, 0.060246, -0.066755, -0.082812, -0.04745, -0.042772, -0.041087, 0.057545, 7883e-6, 9917e-6, -6255e-6, 0.049255, -0.044311, 0.016231, 0.011003, 0.046494, 0.041745, 0.090333, -5153e-6, 0.027876, -0.019395, 0.02218, 0.032004, -0.010123, 0.029764, -0.064499, -0.115006, 0.032921, 0.104906, -0.174676, 0.034576, -0.084493, -0.020195, 0.14317, -0.053868, 0.050113, -0.051502, -243e-5, -0.091607, 0.077109, -0.097035, 0.02686, -0.046713, -0.010951, -5182e-6, 5712e-6, 5872e-6, 0.019506, 0.031362, 0.036484, -0.063412, -0.016465, -0.018328, 927e-6, 0.106357, 0.05764, -0, -0.022948, 0.041415, -0.020718, -4894e-6, 0.047703, -0.010791, 0.04295, 0.052046, -0.036479, -0.076381, -0.010675, -0.020637, -0.010438, 0.011142, 0.076695, 0.010225, -0.072418, 0.073862, -0.044196, -0.045252, -0.064853, -6486e-6, 0.011426, -0.068525, 0.014928, 0.070943, 0.043727, 0.011471, 0.1099, -89e-4, -0.024438, 8331e-6, 0.040991, -0.054374, -0.092545, 0.120573, 0.022712, 0.061321, 0.061318, -0.03014, -7196e-6, 0.087157, 0.012809, -0.016959, -0.076926, 0.018866, -0.074042, 0.063213, -0.028052, -0.067361, -8623e-6, -0.027183, 0.028093, 0.070861, 0.022701, 0.08537, 0.017765, -0.033713, 0.052345, -5898e-6, 0.045594, -0.057795, 0.030427, -0.022254] },
|
|
4837
|
+
{ name: "vault_list_corrections", category: "corrections", tier: 2, descriptionHash: "31e395e8b28305ef", embedding: [-0.043648, 0.077338, -0.030321, -0.02837, 0.014726, 151e-5, -0.017698, 5304e-6, 5427e-6, -0.048423, 0.023172, -0.02774, 0.048395, -0.065254, -0.039636, -0.02483, -0.01102, 0.121324, -2544e-6, -0.089599, -8192e-6, 0.05338, -9598e-6, 0.041373, -0.021537, -0.016499, -0.132583, 9348e-6, 6015e-6, -0.094542, -0.083778, 0.023604, 3403e-6, 0.065039, 0.02994, 0.018956, 0.039602, 1899e-6, -0.012207, -0.059648, -0.039622, -0.053861, -0.093513, 0.042072, -0.053103, 8078e-6, -0.018926, -0.078717, -0.112211, -0.012101, -0.012478, -0.01329, -0.036806, 0.153764, -0.085265, 0.062569, -8564e-6, 0.026621, -0.027017, -0.036586, 0.032352, 5283e-6, -0.033428, 8006e-6, -0.040614, 0.039782, 0.049376, -677e-5, 0.0994, -0.051253, -1592e-6, 2476e-6, -0.039341, -9703e-6, -0.010325, 208e-6, -0.014789, -9998e-6, 0.029657, -0.061627, 0.024814, -9109e-6, -0.021721, -0.029955, -0.04865, -6177e-6, -0.030744, -0.037479, 5237e-6, 1855e-6, 0.016189, -0.041024, 0.138305, -9646e-6, -0.01156, 1653e-6, -9211e-6, -0.040605, 0.018834, 0.023795, -2309e-6, 0.034337, -0.05244, -6046e-6, 0.038624, -0.012368, 0.031469, 0.037845, -0.014849, -0.036521, -6732e-6, 0.051865, 0.029814, -0.068815, 0.055658, 0.061047, -0.047253, 0.059599, -0.07376, 0.029099, 0.081418, -0.013738, 0.052007, -0.046117, -0.039203, -0.067378, -0.055249, -0, 0.094721, 1269e-6, -0.021799, 0.01605, -8696e-6, 0.017008, -0.014355, -0.070635, -9414e-6, 0.033263, 9614e-6, 6269e-6, -0.066784, 38e-6, 0.028986, 0.038822, 0.025049, 0.13202, 0.051138, -4675e-6, 0.04146, 0.034295, -0.011099, -8423e-6, 0.083938, 0.052318, -0.065468, -5959e-6, -0.030746, 0.029386, -1119e-6, -6243e-6, 0.053988, -0.016637, 0.083875, -0.013956, 0.054985, -0.06866, 0.012868, -0.092831, 0.035146, 0.010303, -6782e-6, -0.021911, 0.052644, -0.065201, -5773e-6, 0.027989, 0.032345, 0.029778, -706e-6, 0.083856, -0.135661, -0.028349, -0.039494, -0.036457, 0.01752, -0.014116, -5318e-6, 0.055806, 0.067498, 8427e-6, -0.074342, -0.030315, -0.014119, -2743e-6, -0.081765, -0.059407, 0.045422, 0.038241, -0.074976, 0.033826, 0.024954, 0.081117, -8714e-6, -0.062353, -0.012725, -0.013381, 0.013192, -0.057385, 893e-5, -0.079343, -0.079431, 0.134394, -0.032469, -1441e-6, 0.054244, -0.017777, -0.018968, 581e-6, -0.096724, -0.034269, 4386e-6, -0.017018, -149e-6, -0, 0.078614, -0.048457, -0.019261, 0.052213, 0.019827, 8621e-6, 0.017019, -0.014361, 6406e-6, 0.02338, -0.049423, 4026e-6, -188e-6, -0.052257, 0.01936, -0.011841, -0.083508, -0.062113, -0.01487, 0.0866, 0.032742, -0.051488, 1437e-6, 0.177251, 0.046075, 2865e-6, 0.014254, -0.032286, 0.057633, -0.018687, 3288e-6, 0.028664, -5797e-6, 0.018997, 544e-6, -0.140929, 0.117027, -0.068081, -0.080319, -5966e-6, -9741e-6, 0.055722, -0.067576, 6794e-6, -0.07511, -0.053283, 0.028072, 0.102401, -0.01644, -0.04, 0.039807, -0.021874, -0.041367, 0.042649, 0.083251, 0.109428, -0.054577, -8929e-6, 0.048346, 0.047505, -8878e-6, 0.080358, -0.056874, 0.017735, 0.069778, -0.044329, -0.037577, 0.022511, -0.078308, 0.010256, 0.017361, -0.101533, 0.059785, -0.074585, 0.029174, -0.10655, -0.050386, -0.097248, -911e-6, 0.015532, -0.068186, -0.01871, 0.060818, 0.068369, -1368e-6, -0.044182, 0.065441, 0.021964, 0.043301, -0.044034, -0.015176, -0.080852, -0.020916, -6116e-6, 0.029216, -0, -0.074746, 0.032767, -0.018604, 0.031384, 0.074719, -0.051381, -0.030764, 0.060088, 0.024539, -0.049511, 0.033906, -0.040486, -0.062991, -0.098073, 0.075339, -2474e-6, -0.038452, 0.050065, -0.055714, 0.010613, -0.088552, 0.017376, 0.01384, -0.090087, -5212e-6, 0.037046, 0.015637, 0.093103, 0.081963, 0.031203, 0.068953, -0.012297, 0.116178, -0.056825, 0.018637, 0.076046, 0.034446, 454e-5, 2452e-6, 0.032331, 0.021143, -0.073239, 0.033483, 0.118301, 74e-6, -0.020581, -11e-6, -0.013072, 0.018216, -0.090117, 858e-6, -0.044205, 8854e-6, 0.050312, -635e-6, 0.081539, 0.06596, -0.046645, 0.046891, -0.064627, 0.146349, -0.034092, 0.04103, -5006e-6] },
|
|
4838
|
+
{ name: "vault_move_note", category: "note-ops", tier: 3, descriptionHash: "0080e6f8e83621ca", embedding: [-0.036147, -0.039255, -0.045447, -0.020568, -479e-6, -0.027441, -0.048657, 948e-6, -0.02405, 0.011096, 0.060915, 0.011966, 0.052053, -0.072263, 0.052601, 0.048767, -0.026243, 0.109112, -525e-6, 9859e-6, -0.020953, -0.026923, 0.033416, 0.028408, 0.052499, 0.035699, -0.09014, 8776e-6, -0.01477, -0.044299, -0.048932, -3848e-6, -0.034401, -0.037131, 0.039207, 0.17893, -0.039721, -9733e-6, -1001e-6, -945e-5, 0.063432, 0.01693, -0.063708, -0.01392, 0.012005, -0.046228, -0.072242, 0.039588, -0.033763, 0.016591, 0.046812, -0.105846, -0.100111, 0.094362, -0.075264, 0.138482, 0.014368, 0.077872, -0.020816, -0.017089, 0.131252, 0.037965, -3827e-6, -0.075697, -0.019351, 0.012152, 0.048953, 0.0353, 8276e-6, -0.092643, 86e-4, -0.016555, -0.014074, -4309e-6, 964e-5, 0.014907, -0.028835, 0.058919, -0.094712, -0.06037, 0.097042, -0.023071, -0.029565, 0.013859, 0.023738, -4723e-6, -0.072419, -0.042486, -0.012178, 0.012822, 0.071064, -0.030561, 0.019503, -0.061432, 0.018152, 0.064042, -0.089134, -0.031347, 0.067899, 0.01631, 5952e-6, 0.065595, 0.036531, 0.086459, 0.079015, 0.087549, -0.010232, 0.068544, -0.052959, -0.056, 1758e-6, 0.018181, 0.073983, -0.010453, -1412e-6, -0.019237, -0.097866, 0.045137, -0.012069, 0.055895, 0.131129, 471e-6, 0.047442, -3924e-6, -0.09519, -0.062413, 9472e-6, -0, 0.071839, 0.090653, 4961e-6, -0.016752, 0.058264, 7351e-6, -0.037158, 8634e-6, 807e-5, -0.024871, 0.010144, -0.064986, 0.019661, -0.032516, -0.029562, -0.065448, 0.032404, 0.086834, 0.089109, -1467e-6, 696e-6, 0.045073, -0.034039, -0.043845, 0.064797, 0.056473, -0.026408, -0.045016, -0.025275, -0.027093, -0.022514, 0.01782, 0.027521, -0.04548, 0.013356, 7815e-6, -0.036164, -0.081284, -0.019423, -0.052972, 0.06454, 0.010471, -0.032713, 9577e-6, 8769e-6, -0.013636, -8345e-6, 0.043822, 0.028062, -654e-5, -0.017327, -0.014747, -0.102965, -0.034048, -0.045918, -0.117259, -0.025665, 0.015585, -8012e-6, 0.017273, 0.055694, -0.031505, -0.077044, 0.081465, -0.043222, -0.018359, -0.114599, -6432e-6, 0.032981, 0.026817, -0.031171, 0.081115, -0.012867, 0.087423, -0.050916, -0.0619, -0.107283, 0.056586, 583e-6, -0.079425, -0.042042, -0.035319, -0.066589, 0.089858, 0.073927, 0.081247, 0.011261, -0.15183, -1712e-6, -0.035556, -0.060638, -0.044298, 0.049663, -0.069818, 0.048198, -0, 0.067494, -0.021564, 0.03137, 2729e-6, -0.021881, 0.04937, 796e-5, 0.048665, -0.05289, 0.108971, -0.094749, 0.064844, 0.022119, -0.058436, 8489e-6, 0.01901, -4659e-6, -3785e-6, -0.022553, 0.047216, -213e-6, -0.024607, 0.03309, 0.137052, 0.064524, -0.010042, 0.024594, -0.013992, 0.060381, -0.024868, -0.011587, -0.041787, -1842e-6, 0.0274, -2801e-6, 0.026933, -2027e-6, -0.015628, -0.049274, 0.05916, 0.087683, -0.038886, -0.027163, -0.054886, 0.011057, 0.03403, 3983e-6, 0.045677, -0.125638, -0.045259, 0.070535, -0.035118, 4005e-6, -0.048892, 0.049201, 0.08485, 0.056064, -4555e-6, -0.03683, -0.08313, 0.037833, 0.062143, 0.015222, 9146e-6, 0.028184, -0.018882, -0.010523, -0.029876, -0.141805, 0.016731, -8449e-6, -0.025814, 0.011767, -0.039085, 0.069478, -0.077592, -0.024114, -0.110208, -6546e-6, -0.057069, -0.019848, -0.024417, 0.047632, 122e-6, -0.032947, 0.0154, 0.069687, 0.04261, -0.040071, -0.031684, -0.058779, -9505e-6, 0.089656, -0.013791, 0.041829, -0, -0.012299, 0.113508, -0.078648, 5207e-6, 0.026111, -0.032559, -0.02926, 0.051417, 0.040369, -0.017433, -7683e-6, -0.032494, 377e-6, -0.038125, -0.059552, 0.018295, 5296e-6, -0.011158, -0.023796, -0.035538, -0.066238, 0.096471, 0.060288, -0.013982, 0.037404, -0.022266, 7696e-6, 0.094882, 0.115626, -7011e-6, 0.069768, -0.081602, 0.039954, 0.028067, -0.04363, 2596e-6, 0.047596, 7315e-6, 0.011252, 0.083817, -5509e-6, 0.026151, -3381e-6, 0.063538, -0.012971, -0.089135, -0.034082, -2457e-6, 0.020136, -0.031246, -0.035468, -0.029868, -0.012221, -0.024317, 0.016216, 0.017311, 0.062045, -0.017155, 0.017047, 8382e-6, 0.050676, -0.049056, 0.023964, -0.028982] },
|
|
4839
|
+
{ name: "vault_record_correction", category: "corrections", tier: 2, descriptionHash: "0273a16eb68f9ef2", embedding: [-0.088117, 0.062343, -0.032012, 2718e-6, -0.054112, -0.012913, -0.047718, -0.020855, 0.034814, -0.049103, 0.026787, 0.059005, 0.066226, -0.058445, -0.043259, -0.0219, -0.058574, 0.191897, 3955e-6, -0.031703, -0.049195, 0.051538, 0.012392, 0.065837, 6844e-6, -0.06734, -0.096784, 0.042874, 0.02531, -0.109113, -0.045278, 0.063843, -0.084645, 0.011304, 0.024337, 0.055789, -0.034343, 6474e-6, 0.039228, -0.042645, -0.019054, -0.045215, -0.066978, 0.031997, -0.024675, 0.03284, -0.04388, 0.028516, -0.079198, 0.045275, 9347e-6, -0.024034, -0.010501, 0.1376, -0.039798, 0.072527, 0.012374, 0.104927, -0.032277, 0.036539, 0.075377, 0.045302, -0.066058, 0.017512, -0.021197, 0.099621, 0.047829, -0.023476, 0.075178, -2234e-6, -0.015637, -0.041213, -0.041502, 0.032088, -0.044571, 0.023767, -0.043518, 0.022026, -2844e-6, 0.013178, 0.040354, -0.029895, -0.024067, -0.010303, 0.064488, -0.046815, -5228e-6, -0.033611, 0.034204, -0.01284, -2651e-6, -0.049454, 0.144347, -0.034781, -0.048639, -0.013399, -3779e-6, -0.027342, 0.030211, 0.027973, 0.023338, 0.063037, -0.051226, 5321e-6, 0.040045, -0.015918, 5203e-6, 0.068417, 0.047756, -0.015776, 0.024974, 3618e-6, 0.053574, -797e-5, 0.068679, 0.036568, -0.078685, 0.083938, -0.059413, 0.03879, 0.02918, 945e-5, 0.053764, -0.010272, -0.120323, -0.112941, 0.054563, -0, 0.091328, 0.032009, -0.021742, -0.026291, 0.059004, 0.036687, -0.076099, -0.018019, -0.017133, 0.025972, 676e-6, 0.01699, -0.05763, -0.016709, -0.020015, 0.078195, -0.016656, 0.121372, 0.051383, 1099e-6, 0.064806, 0.028131, 0.021667, -0.04539, 0.063132, 0.090697, 7521e-6, -0.028796, -8243e-6, 0.01083, -0.015102, -0.011613, 0.064894, -0.029108, 0.035151, -0.04789, 0.078689, -0.072023, -0.014365, -0.024467, 0.0265, 0.025037, 35e-6, -0.034689, 0.034579, -0.086355, 0.021144, -4974e-6, 7776e-6, -805e-5, 0.019751, 0.084609, -0.062492, -0.033506, -0.058011, -0.043879, -0.021634, -0.0115, -3125e-6, 0.075337, 0.114638, -0.015757, -0.063171, -0.011924, -0.070602, 0.027303, -0.088159, -0.086524, -194e-5, 0.012755, -0.068014, 115e-5, -8602e-6, 0.047165, -0.080676, -0.072641, -0.068005, 0.012942, -6278e-6, -0.016143, -0.022761, -0.088977, -0.095522, 0.095549, 465e-5, -0.028733, 0.037043, -0.049945, -0.063918, 0.01558, 0.026211, -0.029284, 0.065219, 0.021234, 0.048776, 0, 0.03215, -0.047892, -0.015281, 0.09475, -0.040524, -0.012182, 0.02984, 0.011983, -0.052691, -0.026149, -0.048626, 0.026483, -7285e-6, -1731e-6, 0.018684, 3819e-6, -0.030353, -0.047198, -0.076978, 0.102046, 0.071071, -0.080174, -0.015013, 0.143416, 0.048925, 0.019123, 0.044935, -0.066347, 0.03107, -0.026556, 3261e-6, 0.038946, -0.042718, -0.049325, 0.031782, -0.077311, 0.082893, -0.068246, -0.06984, -0.011834, 0.084171, 0.041618, -0.117472, -0.012605, -1985e-6, -0.025485, -0.041707, 0.071984, 4808e-6, -653e-6, 751e-6, -0.048669, -0.016941, -0.026707, 0.06768, 0.07026, -0.040718, 9303e-6, -0.01645, 0.051677, -2948e-6, 0.040471, -0.073398, 0.074697, 0.050508, -0.032368, -0.037033, 0.055804, -0.08875, 0.051082, 0.020764, -714e-6, 0.040397, -0.0805, 0.071983, -0.064152, -0.050645, -0.048709, -0.01591, -0.020707, -0.019393, -0.012561, 0.068912, 0.063032, -0.039349, -0.053786, 0.054908, 0.039908, 347e-5, -0.020448, -0.024962, -0.033112, -0.062673, -0.035292, -773e-6, -0, -0.072916, 0.038898, 0.018195, 0.039751, 0.076254, -0.085479, -9165e-6, 0.075498, -0.030729, -0.096177, 7509e-6, -8339e-6, -0.037331, -0.099086, -0.032836, -0.031133, -0.040823, -0.014446, -0.032748, -1952e-6, -0.090629, 0.037425, 0.017511, -0.048147, -0.015231, 2481e-6, 544e-6, 0.151646, 0.03185, -0.027991, 0.039516, -0.048312, 0.106962, 848e-5, -0.035225, 0.039374, 0.050438, 0.027584, 0.027753, -0.035743, 0.013601, 0.012718, 0.032905, 0.074946, -0.027147, -5408e-6, 0.01508, 0.0108, -0.016242, -0.094368, -0.010901, 6185e-6, -0.010748, 0.063963, 0.060055, 9048e-6, 0.030099, -0.046101, -0.011426, -0.03619, 0.132507, 0.010165, -2318e-6, -0.027891] },
|
|
4840
|
+
{ name: "vault_remove_from_section", category: "write", tier: 1, descriptionHash: "3e42c3956c553eb4", embedding: [8709e-6, 0.15739, 0.016089, 0.0589, 0.051272, -0.044596, -0.040716, -0.061023, 0.018119, -0.035788, -0.019247, 0.026659, 0.087148, -0.033263, 0.081181, -0.045764, -0.025313, 0.080046, 3845e-6, -7354e-6, 0.076139, 0.01257, 5764e-6, 0.077697, 0.02019, -0.011885, -0.090753, 0.031489, -9667e-6, -5448e-6, 0.027071, -0.046157, 0.043769, -0.011819, 0.077514, 0.063649, 0.01376, -0.025867, 0.035841, -0.02515, 0.024434, -0.044658, -0.086598, -6207e-6, 0.016704, -0.030952, -0.082193, -0.017838, -0.076541, 0.039926, 0.029597, -0.052949, -0.046407, 0.093657, -0.057028, 0.058719, -0.014601, -0.011346, -0.026744, -0.059282, 0.060962, 0.031525, 4695e-6, -0.058922, 6864e-6, 0.074036, 0.031087, 0.021607, -8559e-6, 145e-6, 0.039912, -0.061091, 0.023941, -0.023006, 0.050958, 0.028941, -0.075135, -7221e-6, -0.066035, -0.041744, 0.065061, 0.021515, -0.053744, -1283e-6, -0.087752, -0.011886, -0.032672, -0.106221, 125e-5, -0.021375, 0.023603, -0.047128, 0.100121, -0.015908, 875e-6, -0.038786, -0.03151, -0.102384, 0.013785, 5855e-6, -0.046792, 0.027478, 0.012074, 5186e-6, 1422e-6, 0.022027, -0.04643, 0.055249, -0.080856, 262e-5, -0.012416, 0.060809, -0.01497, 392e-6, 0.02814, 0.025183, 0.088803, 0.035022, -0.048378, 0.07812, 0.132064, -8597e-6, -0.010087, 0.055777, -0.072349, -0.090461, -0.019348, -0, 0.083556, -0.038883, -0.090201, 0.017742, 0.083786, 0.051585, -0.025658, -0.042731, 1009e-6, 0.012715, 0.064111, -0.127235, -6162e-6, 0.022825, 0.012985, -134e-5, 0.021119, 0.033234, 0.037697, -0.014345, -0.023919, 0.074963, -0.02748, -0.080974, 0.031162, 8181e-6, -0.075181, -0.080056, -0.113707, -7933e-6, 8092e-6, 3696e-6, 2732e-6, -0.067678, 2611e-6, 0.017147, 5901e-6, -0.04269, -677e-5, -5406e-6, 0.022628, 0.016667, 0.035448, -0.031921, -0.016293, 0.037705, 0.03631, 0.040549, 0.016733, -0.088324, 0.045623, 0.077526, -528e-6, -0.099262, 121e-5, -0.074531, 0.011854, -0.033187, -0.019651, 0.036089, 0.038668, 0.025958, -0.055514, 0.055365, -0.087174, -0.010751, -0.050355, -0.030918, -0.068689, -0.06249, -0.078456, 0.078369, -254e-6, 852e-6, -0.027938, -0.054593, -0.033714, 0.04002, 0.011247, -0.019806, 0.021254, -0.037335, 5054e-6, 2018e-6, 0.079496, 0.048235, 0.033696, -0.05287, 7308e-6, -0.107957, -0.042143, -0.074846, 0.041028, -0.102127, 0.063421, 0, 0.11095, 2835e-6, -0.022066, 0.014204, -0.032829, 0.014592, 0.011436, 0.041012, -0.038495, 0.072824, -0.051496, 0.017307, -0.020785, -32e-5, -0.048241, -0.016905, -0.074956, -0.010543, 4717e-6, 0.029358, -0.010839, -0.046298, 0.01513, 0.085761, 0.023638, -0.056613, -0.034768, 0.012183, 0.082077, -0.060122, -0.03419, 0.046986, 0.041656, -0.070408, 0.014987, -0.042056, -0.075778, 4102e-6, -0.025304, 0.04546, 0.083385, -0.019577, -0.040648, -0.057189, -0.014137, 0.023641, 0.079462, 0.086069, -2351e-6, 0.032519, -0.042654, -0.027304, -6754e-6, -8325e-6, 0.069112, 0.066084, 4345e-6, 0.016448, -0.022686, -0.049078, 0.06008, 0.165265, -3639e-6, 0.023082, 0.109811, -0.077334, 0.03608, 0.016501, -0.142429, -3128e-6, 2575e-6, -0.029143, 0.105576, -0.052375, 0.060664, -9556e-6, -0.029981, -0.022414, 383e-5, -123e-5, -0.025096, -0.036257, -0.056859, 9758e-6, 0.03733, -0.010281, -0.054191, 0.031887, -0.050179, 8658e-6, -0.026242, -0.03872, 0.109693, -3972e-6, 883e-5, -0, 0.023315, -0.027045, -0.112237, -0.051748, -0.014135, 0.014812, -0.032164, 0.036147, 0.026981, -0.032799, 0.03471, -8035e-6, -0.106435, -0.103224, -0.093722, 0.028474, -0.056734, -2251e-6, -0.016513, -0.052015, -0.074735, 0.046389, -0.017311, -0.058498, 0.030355, 0.048759, 0.025888, 0.115036, 0.091286, 7746e-6, 0.062288, -0.075848, 0.064454, 0.022222, 0.027256, 0.040627, 0.082792, 0.015283, 0.074682, 0.11951, 0.045119, 0.017098, 3524e-6, 0.052993, 0.052482, -0.025795, -0.038786, 0.038957, 0.058541, -0.02065, -0.042242, 0.018326, -0.0279, 0.024642, -0.014657, -8215e-6, 0.094405, 2538e-6, 0.017317, 0.014807, 0.120162, -0.045355, 0.099685, 6209e-6] },
|
|
4841
|
+
{ name: "vault_rename_note", category: "note-ops", tier: 3, descriptionHash: "ba7289187e4bedd7", embedding: [-0.041281, 912e-5, -0.034965, -0.033637, -0.053758, -0.038171, -0.047648, -0.012504, 9813e-6, -9957e-6, 0.037123, 0.013423, 0.052735, -0.074849, 0.027976, 0.029984, -0.038611, 0.141428, 0.015542, 2778e-6, -9563e-6, 0.019979, 0.01101, 0.032594, 0.056502, 0.01782, -0.106556, 0.031725, -0.02626, -0.058826, -0.011319, 8312e-6, 2613e-6, -0.035835, 0.064509, 0.150963, -0.073721, -2095e-6, 5373e-6, -6913e-6, 0.057038, -0.030582, -0.06648, -7997e-6, 8574e-6, -0.052133, -0.048476, 0.014513, -0.037131, 0.041167, 0.072233, -0.126921, -0.103583, 0.088133, -0.062217, 0.096368, 0.019502, 0.085432, -0.050208, -0.012093, 0.109828, 0.029719, -0.012275, -0.103556, -0.025588, 0.043087, 0.076211, 0.027448, 0.019683, -0.076208, 0.03521, 0.016003, 0.055396, -0.013157, -0.015562, 0.043822, -0.060677, 0.064183, -0.110778, -0.062128, 0.098322, -3e-6, -9325e-6, -82e-6, 0.034113, 0.022265, -0.067322, -0.087915, -0.020809, -97e-6, 0.031866, -0.061902, 0.061489, -0.076246, 7366e-6, 0.054179, -0.059562, -0.021203, 0.048188, 0.017107, -9117e-6, 0.059735, 0.023765, 0.06824, 0.074257, 0.093714, -0.010317, 0.074864, -0.035228, -0.083886, -0.013532, 0.024574, 0.092546, -2881e-6, 2532e-6, -0.036875, -0.063284, 0.015262, 0.022138, 0.04822, 0.138938, 0.036215, 0.038702, -6033e-6, -0.109223, -0.057591, -0.017833, -0, 0.059382, 0.120276, -0.014222, -0.025775, 0.081076, -0.013841, -0.030957, 253e-5, -5537e-6, -0.023828, 0.010208, -0.066598, 0.040461, -0.064492, -0.034323, -0.055807, 0.019929, 0.107839, 0.095978, 4591e-6, -6003e-6, 0.056749, -0.028421, -0.026094, 0.04417, 0.031723, -9616e-6, -0.062687, 4742e-6, -0.024073, 0.024227, 0.011861, 0.030652, -0.023934, 0.011418, -0.026846, -198e-6, -0.05071, -0.048154, -0.0592, 0.078689, 0.019244, -0.028258, 0.017391, 0.010447, 0.019723, 78e-5, 0.048322, 0.03354, -0.067162, -9666e-6, -4757e-6, -0.090407, -0.01477, -0.061121, -0.087977, -0.040733, -3308e-6, -0.041096, -4803e-6, 0.041439, -0.028501, -0.077104, 0.085194, -0.064097, -7901e-6, -0.050759, 4538e-6, 8472e-6, 0.029586, -0.044376, 0.055406, -0.025874, 0.06614, -0.019962, -0.078781, -0.068501, 0.064044, -0.016142, -0.050233, -0.049954, -0.010144, -0.039649, 0.083857, 0.045913, 0.081593, 0.025258, -0.152685, -0.016421, -0.066426, -0.061525, -0.017578, 0.055135, -0.046303, 0.033517, 0, 0.076832, -0.037745, 1564e-6, 0.052596, -0.021947, 0.032078, -8442e-6, 0.072363, -0.089503, 0.067803, -0.043278, 0.059721, -0.031458, -0.072237, 0.015434, 0.011385, -0.02432, -596e-6, -0.032736, 0.04343, 9664e-6, 7633e-6, 0.033403, 0.108168, 0.085393, -0.012928, 0.019902, -0.030871, 0.095863, -1302e-6, -9171e-6, -1956e-6, -0.011416, 0.030078, 446e-5, 0.022123, 0.021819, -0.045034, -0.058243, 0.046833, 0.077773, -0.024373, -0.019067, -0.04058, 149e-5, 0.013458, 1413e-6, 0.048559, -0.091784, -0.037299, 0.048441, -0.087184, -0.019598, -0.051767, 0.05793, 0.046318, 0.069028, -0.015633, -0.04701, -0.04028, 0.040777, 0.067234, 0.013213, 0.033067, 0.020205, -0.026348, -0.026239, -0.019533, -0.116912, 9844e-6, 77e-4, -0.033433, -8418e-6, -0.0306, 0.052432, -0.055893, -0.030843, -0.087196, -0.027549, -0.046631, -0.034013, -0.023834, 0.038452, 0.030275, -0.038993, -1551e-6, 0.090256, 0.07456, -0.044258, -156e-5, -0.031617, -0.032531, 0.11225, 0.020277, 0.031916, -0, -649e-5, 0.081919, -0.076437, 0.016667, 0.021243, -0.036641, -0.063676, 0.064527, 0.049015, -0.027069, 0.018118, -0.033507, -0.040002, -0.0431, -0.087078, 8558e-6, -0.03133, 0.044443, -0.017157, -0.015759, -0.091888, 0.104959, 0.034907, -0.060538, 0.037645, -0.030868, 0.011768, 0.09091, 0.087392, 6286e-6, 0.050486, -0.063661, 0.049561, 0.042864, -0.050647, -0.019793, 0.047811, 0.016095, 0.026512, 0.113752, 0.012761, 0.017238, 0.018882, 0.05793, -0.017103, -0.096927, -0.031838, 0.024235, 0.041571, -0.04521, 0.011367, 0.017388, 0.018478, -0.037641, 0.013511, 0.04399, 0.091867, -9453e-6, 0.015885, -475e-6, 0.067514, -0.056938, 0.026727, -0.037369] },
|
|
4842
|
+
{ name: "vault_replace_in_section", category: "write", tier: 1, descriptionHash: "9abc3b6253ae1016", embedding: [0.012341, 0.12803, 0.042738, 0.038966, 0.03039, -0.029533, -0.064438, -0.016109, 9718e-6, -3069e-6, -0.038652, -6588e-6, 0.075791, -0.044403, 0.108507, -0.022635, -8226e-6, 0.108751, -0.019316, -0.015039, 0.048611, 0.043317, 7109e-6, 0.070172, -2806e-6, -0.020932, -0.099404, 0.026033, -0.012592, -0.01878, 2907e-6, -0.022851, 0.028383, 0.012045, 0.076913, 0.081497, 0.025317, -0.032552, 0.062603, -0.044038, 0.021756, -0.039673, -0.089444, 0.019968, 1719e-6, -0.042986, -0.038681, -0.039925, -0.037247, 0.076863, 7816e-6, -0.079182, -0.038903, 0.117031, -0.059265, 0.073129, -8878e-6, 354e-6, -0.015524, -0.072938, 0.094404, 0.045723, 0.039341, -0.04376, -0.016273, 0.04279, 0.021026, 0.033557, -0.015908, 0.017818, 0.010401, -0.043691, 3691e-6, -3265e-6, 0.035987, 7987e-6, -0.085153, 2592e-6, -0.044533, -0.0306, 0.060292, 0.026888, -0.039403, -0.014817, 0.011431, -0.029583, -0.02799, -0.133085, -457e-5, -0.043345, 7087e-6, -0.052525, 0.092386, -0.055373, -0.033571, 6919e-6, -0.042441, -0.086349, 0.06579, 4278e-6, -0.028425, 0.015516, 0.011129, -0.038733, -377e-6, -0.011883, -0.049295, 0.09433, -0.06861, -0.014534, 0.028983, 0.048537, 0.012057, -0.037664, 0.043263, -0.025409, 0.052595, 0.017721, -0.052689, 0.098644, 0.131008, -3407e-6, -0.021783, 0.039154, -0.074133, -0.086651, -0.014677, -0, 0.09213, -0.019943, -0.056195, 0.041552, 0.035875, 0.047795, -0.014069, -0.049025, -5781e-6, -0.030061, 0.055615, -0.13576, -0.017434, 0.02254, -0.010401, -0.018837, -2e-5, 4196e-6, 0.072519, -8677e-6, -0.064374, 0.066424, -0.049045, -0.094219, 0.050126, 0.063445, -0.064204, -0.102274, -0.073261, -0.011928, 0.010742, -818e-6, 245e-6, -0.051033, -0.026355, -0.017231, 0.036441, -0.040195, -8441e-6, -0.025087, 3105e-6, 0.025214, 0.061933, -0.01715, 2942e-6, 0.059243, 0.055974, 0.065852, 0.012258, -0.123699, 0.01079, 0.070266, -0.036436, -0.058025, 4802e-6, -0.058716, 0.012318, -0.043918, 751e-6, 0.027367, 0.054257, 0.021152, -0.053113, 0.08699, -0.059634, -0.021081, -5507e-6, -0.025107, -0.068924, -7258e-6, -0.077039, 0.054962, -0.051859, 0.051621, -0.05045, -0.092419, -0.056828, 0.055704, -4332e-6, -0.036948, -678e-6, -0.031742, -4607e-6, 0.012137, 0.087288, 0.036472, 0.030778, -0.073956, 3328e-6, -0.111336, 9556e-6, -0.09081, 0.03662, -0.10054, 0.07605, 0, 0.111166, -0.030183, -3783e-6, 0.066285, -0.037214, 6933e-6, 8297e-6, 0.019724, -0.021195, 0.069522, -0.061804, 0.011511, -0.050853, -0.019387, -0.074325, -0.017748, -0.112082, -3645e-6, 0.012204, 236e-5, 0.015732, -0.010277, 0.027314, 0.105094, 0.05021, -0.034671, -0.013931, 0.010517, 0.071379, -0.070292, -0.046206, 0.029321, 0.023841, 0.011913, 0.013186, -0.012627, -0.016164, -0.018707, -0.062993, 0.070075, 0.097197, -0.02513, 6428e-6, -0.041287, -0.0159, -8457e-6, 0.041214, 0.058141, -0.01945, 0.014432, -0.025368, -0.041568, -0.031929, 0.01458, 0.07602, 0.069455, -0.021508, 0.015904, -0.041309, -0.069255, 9026e-6, 0.123676, 0.07448, 0.012023, 0.112693, -0.03985, 0.038274, -6612e-6, -0.108652, -9622e-6, 0.038088, -0.069416, 0.062754, -0.059723, 0.050247, -0.021434, -0.027802, -0.010022, -406e-5, 0.01512, -0.051338, -0.056746, -0.054227, 0.035112, 0.024664, 0.032659, -0.012531, 0.09995, -0.039827, -0.038298, -0.0556, 7467e-6, 0.094723, -0.036799, 0.012322, -0, -0.01106, 0.013492, -0.103645, -0.042665, 3342e-6, 1405e-6, -0.030292, -0.013362, 8636e-6, 0.011865, 0.02681, 0.011114, -0.031002, -0.118975, -0.117316, 0.05655, -0.060042, -5166e-6, -0.024588, -0.041372, -0.073901, 0.098949, -0.041613, -0.046822, 0.040534, 0.044017, -1633e-6, 0.094094, 0.074993, 3018e-6, 0.056435, -0.085968, 0.045792, 0.035916, 0.02509, -9521e-6, 0.108144, -1116e-6, 0.067962, 0.100917, 0.018338, -0.026416, -0.01346, 0.045681, 0.050576, -0.037941, -0.041223, 0.046849, 0.038699, -0.018957, 6166e-6, 0.020716, -0.025996, -2216e-6, -3077e-6, -0.021316, 0.100952, 0.026041, 0.039089, 0.026027, 0.085291, -0.055236, 0.101727, 4354e-6] },
|
|
4843
|
+
{ name: "vault_resolve_correction", category: "corrections", tier: 2, descriptionHash: "c955f85780eb6a75", embedding: [-0.044743, 0.105875, 0.031488, -0.012326, -0.076638, -0.064309, -0.081697, 0.014949, 0.030044, -0.044144, 1329e-6, -2708e-6, 0.072479, -0.02894, -0.029392, -0.013935, -0.024277, 0.135744, -462e-5, -0.036459, 431e-5, 0.049332, -0.018667, 0.02044, -0.021348, -0.031142, -0.138944, 0.026188, 0.030638, -0.046816, -0.038254, 0.131417, -0.046069, 0.049629, 0.013195, 0.076015, 779e-5, -4467e-6, 0.03112, -0.094057, 0.031086, -0.068314, -0.034181, -1251e-6, 0.03243, -0.015684, 7979e-6, 0.042267, -0.119377, -8986e-6, -0.011168, -0.036958, -0.070393, 0.149781, -0.073168, 0.080634, 0.016494, 0.057885, -0.011301, -0.012629, 0.036372, 0.01993, -0.090448, 0.022502, 0.035882, 0.050662, 0.091338, -0.09059, 0.061007, 0.015595, 0.024599, -0.036032, -4878e-6, 2042e-6, -108e-6, 0.026312, -0.061143, -0.011361, 0.061418, -0.03238, 0.05163, 261e-6, -0.016525, -0.033487, -3688e-6, -0.039702, -0.025667, -0.077177, 0.071775, 7908e-6, 0.048807, -0.095347, 0.095195, 2555e-6, -0.039005, -0.025223, 0.017382, -0.037439, 0.036574, 0.04715, -2415e-6, -0.012428, -0.10321, -0.095301, 0.024386, 0.03133, 0.021597, 0.074282, -0.016637, -0.042802, -532e-6, -0.04919, 0.083633, -0.022172, 0.048492, 0.085929, -7168e-6, 0.017634, -0.029916, -0.053678, 0.050284, 0.019855, 0.047813, -0.083967, -0.059055, -0.068175, -0.030134, -0, 0.030188, 0.018562, -0.029062, 0.020264, 0.049224, -3167e-6, -5786e-6, -0.059993, -0.011768, 0.038847, 0.078736, 4663e-6, -0.034528, -0.048944, -0.052718, 0.029215, 0.0673, 0.1131, 0.014719, 0.074888, 0.09596, 0.057175, -605e-6, -0.018405, 0.043008, 0.055501, -0.022081, -0.02312, -0.015668, 0.012593, 0.042493, -0.017957, 0.016751, -77e-4, 0.026016, -0.03214, 0.083819, -0.044042, -0.011958, -0.063404, -666e-5, 0.045057, -0.018351, -4292e-6, 0.09604, -0.086561, 0.012008, 2431e-6, 0.030335, 5422e-6, 0.032639, 0.067876, -0.048761, -0.037025, -0.015652, -1979e-6, 0.028641, -0.021039, -0.010714, 0.037253, 0.105462, -0.102319, -0.112101, -615e-6, 8013e-6, 9e-3, -0.081608, -0.048707, 412e-5, 562e-5, -0.040561, 0.029254, 0.081242, 0.076145, 0.01625, -0.097558, -982e-6, 0.04192, 1388e-6, -0.060426, -0.06354, -3749e-6, -0.086226, 0.088865, -0.027936, 1872e-6, 0.020977, -2917e-6, -0.050596, -0.023451, -0.065256, -0.029837, -6833e-6, 0.014158, 0.091944, 0, 0.037374, -0.033867, -0.02548, 0.098222, -0.030005, -0.013641, 0.017818, -0.056155, 0.015551, -9344e-6, -0.065209, 0.021447, -0.01075, -0.019053, 1923e-6, 0.029145, -0.010502, -0.088087, -0.016645, 0.103958, 0.048931, -0.038185, -0.047167, 0.15321, 0.053318, 0.016206, 0.049126, -0.034277, 0.040875, -7745e-6, -0.030597, -0.024344, -0.033929, -0.049659, 0.037455, -0.071218, 0.083026, -0.134212, -0.089094, -65e-6, 0.045789, 0.011874, -0.143449, 0.034427, 3093e-6, -0.050751, 0.043381, 0.037332, 4171e-6, -0.085747, 0.073961, -0.074067, -0.028208, -45e-6, 0.07618, 0.09054, 9603e-6, 6626e-6, 5342e-6, 0.058086, 0.029133, 0.043404, -0.01743, -0.018443, 0.044853, 9315e-6, -0.04206, 0.038738, -0.051692, 0.021808, 0.023863, -0.015434, 0.042644, -0.100322, 0.088219, -0.081743, -1189e-6, -0.040015, -0.010129, 0.03709, -0.050304, -5785e-6, 0.013237, 0.041611, -0.035761, -0.031472, 0.058481, 0.046369, -0.015097, -0.036842, 0.011515, -0.013542, -1988e-6, -0.054502, -0.042836, -0, -0.066808, 0.019133, -0.037239, 8988e-6, 0.06633, -0.010341, -0.032696, 0.051004, -2782e-6, -0.096577, -0.017743, -0.041215, -815e-5, -0.075262, 0.042123, -0.037589, -0.049179, 0.038842, -0.122821, -0.029265, -0.079099, 0.040879, 0.014951, -0.112801, -8625e-6, 0.020608, 0.052339, 0.050616, 0.047406, -5442e-6, 8689e-6, -0.021227, 0.092342, -0.049137, 1088e-6, 0.015075, 0.095248, 0.034371, 0.047411, 0.04791, 0.013172, 7799e-6, 0.050361, 0.090486, 0.014138, -9561e-6, -0.012372, 0.031905, 0.017348, -0.057989, 0.019742, -565e-6, -0.053018, 0.051585, -9709e-6, 0.025816, 0.068445, -0.059704, -2715e-6, -0.021723, 0.111758, -0.032282, 0.015613, -0.034612] },
|
|
4844
|
+
{ name: "vault_schema", category: "schema", tier: 3, descriptionHash: "e79e8561c42416c7", embedding: [0.025534, 0.018326, -0.07288, -0.029649, 0.020281, -0.023628, -0.058728, -0.019337, -2227e-6, -0.05725, -0.028796, -0.05801, 0.031622, -0.037779, 0.073093, 0.036022, -0.034753, 0.02397, 0.012709, 0.019365, -829e-6, 5873e-6, -301e-6, 0.045779, -0.020673, 0.027683, -0.098982, 0.027821, -0.021454, -0.03328, -0.022483, 0.064212, 0.010871, 0.050852, 0.062076, 0.080934, -0.015563, 0.078726, -1332e-6, -0.022955, -0.044141, -0.067157, -0.011608, 0.046484, 0.010216, -0.08489, -0.050221, -0.040562, -0.039707, 0.022898, -3989e-6, -0.040335, -0.043507, 0.093586, 2333e-6, 0.137909, -0.063397, 0.066543, -0.04104, -0.039724, 958e-6, 0.064627, 4697e-6, -0.022419, 0.034208, 0.04623, 0.03972, 62e-6, 0.077668, -0.048942, 0.071437, -8739e-6, -0.046902, -0.039316, 3705e-6, 0.039568, -0.027319, 0.029667, -0.03439, -0.123737, 487e-6, 3021e-6, -0.024848, -2196e-6, 0.017476, 7034e-6, -0.0578, -0.083707, -0.026528, 0.025899, 0.022801, -0.130578, 0.075903, -0.025342, 0.038299, 0.049746, -0.022474, -0.114559, 0.037096, 1192e-6, 0.014403, 285e-5, 0.112817, 0.084481, 0.053157, 0.018939, -8398e-6, -0.010879, -0.091978, 664e-5, 0.028459, 0.029333, 0.029936, -0.052824, 0.043309, 0.024805, -0.075732, -0.044457, 3785e-6, -0.020886, 0.089679, -5349e-6, 0.114669, -0.032365, -0.027012, -0.067394, -0.02354, 0, 0.061291, 0.074444, 0.010066, 0.016044, -8156e-6, 2517e-6, 0.025078, 0.053958, 437e-6, 0.087497, 0.033049, 0.06412, -0.035159, -0.064955, 0.012283, 0.057119, -0.047924, 0.05856, 9844e-6, 467e-6, 0.039921, 0.060657, -0.063197, 0.031751, 0.07574, 0.028909, -0.019938, -0.014971, -0.066255, 0.021491, 0.050473, 0.016293, 0.104024, 0.029502, 0.040241, 0.02393, -0.010977, -0.063061, 352e-6, -0.089411, -3729e-6, 0.030008, 0.090539, -0.054443, 0.028308, -0.038593, -0.055777, 0.031412, 0.033024, -0.011787, -0.027016, 0.020616, 0.014173, 0.022378, 0.024711, -0.119431, 54e-4, 4658e-6, -0.022332, 0.048427, 5706e-6, 0.02947, -0.110502, 0.039976, -0.099507, 0.028455, -0.101479, -0.044937, 0.046349, 0.036589, -0.042949, 0.099082, -0.085684, 0.025348, -0.035809, -0.118754, 4847e-6, 0.014613, -0.011458, -0.028538, -0.059948, -0.022512, -0.061287, 0.111631, -0.084651, 0.079847, 0.036076, -0.065057, -0.020355, -0.052263, 5845e-6, -0.016926, 0.025065, -0.023837, 458e-5, -0, -0.012775, -0.02435, -0.017629, 0.04611, 0.059199, 0.054372, 0.032902, 0.016199, -0.021372, 0.033651, -0.032064, 0.014203, -0.011878, -0.071203, 0.013576, -0.029895, -0.067989, -0.101382, 0.015306, 0.090113, -0.011711, 0.030088, -0.044492, 0.082299, 0.0504, -0.022815, -0.027151, -0.058722, 0.052621, -0.019369, 0.025533, -0.030154, 0.028162, -0.011219, -0.059797, -0.077314, 0.04276, -0.057962, -0.051105, 8618e-6, -0.01244, -0.018221, -0.078037, -0.011032, -0.016574, 0.011276, -0.030309, 0.036739, -0.017678, -0.068131, 0.01595, -0.070613, -0.010244, -0.063502, -947e-6, 0.063555, 0.025003, 0.012982, -6886e-6, 2498e-6, 0.056711, 0.112919, -0.012263, 0.061447, 0.049786, -0.077316, -0.035044, 0.017521, -0.173978, -0.013627, -0.037618, -0.064603, 0.080626, 0.026532, 0.057912, -0.031986, -0.045609, -0.059076, 0.059062, -0.035582, 0.023501, -0.045814, 0.07316, 0.081346, -0.022599, 0.013619, 0.02585, 0.061343, -0.042762, 0.036456, -0.030874, -1636e-6, -0.040548, 0.017358, 0.073332, -0, -0.054555, 0.037027, -0.098394, -0.029955, -0.06188, -0.06172, 0.060598, 0.037899, 0.024905, -896e-5, -0.029605, 0.059625, -0.087593, -0.096581, 559e-5, 1814e-6, -0.027907, 0.016269, -0.070176, -0.037499, 0.030907, 0.033002, -0.04317, -0.082347, 0.036634, 0.033155, -0.030304, 0.098278, 0.088731, -5188e-6, 0.031048, -0.067566, 0.075048, 4852e-6, -285e-5, 0.111753, 0.047515, -7816e-6, 0.039924, 0.053682, 3407e-6, -0.065569, -0.073414, 0.02679, 0.023526, -1553e-6, -0.039318, 0.063747, 0.017504, -0.033647, -0.10132, -0.038049, -8431e-6, 0.018179, 9167e-6, 0.031537, 0.095927, 0.013707, 0.10606, -0.049778, 0.142677, -0.027501, 0.022629, 0.078878] },
|
|
4845
|
+
{ name: "vault_session_history", category: "diagnostics", tier: 3, descriptionHash: "dffcb42e19ea4a0a", embedding: [-3036e-6, 0.080314, -0.088311, -0.03429, 2168e-6, -0.019982, -4729e-6, -0.016144, 0.060792, -0.039477, -0.036551, 0.01604, 416e-6, -5599e-6, -29e-4, -0.032503, -0.05722, 0.063679, 0.05058, -0.078594, 0.011524, 0.046788, 1211e-6, 0.049531, -0.034917, 3477e-6, -0.043528, 0.010525, 0.020181, -3397e-6, -0.028423, 0.041962, -0.032719, -0.031329, 0.036868, 0.01143, 0.045462, 0.011757, 0.027599, -0.056408, -0.033279, -5808e-6, -0.048812, 0.029056, -571e-6, -0.043383, -0.088173, -0.049935, -0.087452, 0.058781, 0.017856, -1882e-6, 0.049434, 0.103266, -0.046871, 0.087268, -0.037743, -5839e-6, -0.043752, 0.04328, -0.026224, 0.03643, -0.012008, -0.028196, -0.056338, 0.070995, 0.107981, 0.01559, 0.145563, -0.099866, -0.025276, -0.046889, -0.048925, -0.063324, -8929e-6, 5509e-6, 0.027107, -795e-6, -0.095586, -0.133725, -0.020284, 0.075616, 4423e-6, 3325e-6, -0.012196, -9863e-6, -0.048669, -0.0197, -0.021841, 0.046213, -0.024019, -0.058711, -0.049415, -0.039474, 8413e-6, -0.024055, 0.021324, 0.016461, 0.054769, 0.042585, -8658e-6, 0.096573, 7448e-6, 0.045553, 0.038548, 0.020108, -0.027643, -0.020424, -0.014447, 0.010739, -0.036955, 0.058132, 0.042485, 0.016754, 0.123304, -0.033076, -0.064914, 0.041626, -3958e-6, 0.082166, 0.173246, -0.023591, 0.061299, 0.026231, -0.063359, -0.013132, 0.038124, 0, 0.111668, -0.039384, -0.046046, 0.015336, 0.021261, 0.056655, -281e-5, -0.047954, -1162e-6, 0.029471, -0.027535, 0.051713, -0.018644, -0.058274, -0.043211, 0.093985, -0.080003, 0.106918, 0.079487, -0.013616, -0.042272, 0.032647, 0.01805, -0.018711, 0.164268, 0.017041, 3488e-6, -0.011004, -0.044738, -561e-6, -1683e-6, -0.021333, 3668e-6, -0.045562, 0.072091, 0.034246, 0.059834, -0.040587, -0.021638, -0.040194, -0.013744, -0.033531, 557e-6, -0.050667, -0.062997, -0.103222, -0.051368, -0.018645, 0.033759, -0.010329, -0.049335, 0.03305, -0.053258, -0.047595, -0.060121, -0.108316, 0.024976, 0.020576, -0.032792, 0.055988, 0.04525, -0.037765, -0.074994, -0.018842, -0.105781, -0.017356, -0.079381, 0.015893, 0.064446, 0.016589, -0.059331, 0.030179, -0.01618, -0.032891, -19e-6, -0.074732, 0.016113, 0.065326, -0.010814, 0.01075, 1655e-6, -0.047492, -0.03518, 0.091315, -0.044646, 0.058504, 0.054813, -0.037592, -0.044695, -0.082329, -0.113429, -0.032608, 0.08413, 0.023095, -2544e-6, -0, 0.028041, -7919e-6, -8401e-6, -0.04572, 0.028499, -6217e-6, 0.022809, -0.01911, -0.135984, -0.023747, 0.041776, 0.019185, 0.041069, 6071e-6, 0.096502, 0.055165, -0.017159, -0.088483, 8453e-6, 0.04537, -3204e-6, 0.016743, -0.020754, 458e-6, 0.022774, -0.046992, 0.016165, -0.034713, 0.069921, -0.060209, 0.056449, -133e-6, -0.019466, 0.041151, -0.045512, -0.058219, 0.052734, -0.078469, -0.078704, 12e-4, 0.064356, 0.038284, -0.077033, -0.012558, -0.066104, 0.105803, -0.043607, 0.101975, -0.023431, 0.016613, 0.044704, -0.016073, -0.014294, -0.046492, 0.035052, 5991e-6, -9603e-6, -4479e-6, 5858e-6, -0.047528, 0.045478, 0.046541, -0.085092, 0.017422, -8639e-6, -0.071236, -8205e-6, 0.030381, -0.105206, 0.054024, 0.027547, -0.0765, 0.044904, 0.021087, 0.067928, -2081e-6, -0.039865, -0.081032, -3712e-6, -0.046985, -0.03157, 0.017263, 0.03137, -0.011821, 7947e-6, -8558e-6, 0.036499, 0.087684, -0.017205, -0.013583, -7315e-6, -0.026839, -0.093689, -4194e-6, 0.113878, -0, 0.014297, 0.015314, 0.021428, -0.018443, 0.048564, -0.048225, 0.05406, 0.099625, -0.013403, -0.0224, 0.033815, -0.05778, -0.035758, -0.109972, -779e-6, 0.024851, -9397e-6, 3327e-6, -0.025358, -0.036098, -0.061347, 0.021671, 0.021891, -0.052484, -0.065833, 0.041508, -8773e-6, 0.108028, 0.065213, -0.038536, 6934e-6, 0.050116, 0.062728, -0.082849, 0.017246, 0.114248, -9818e-6, -0.015474, 0.019182, 0.025297, -0.073932, -0.066715, 0.044213, 0.041179, 3915e-6, -0.016234, -0.050328, 0.070691, 0.038819, -0.039305, -0.042857, -0.071932, 0.086318, 0.052246, 0.038744, 0.079163, 0.070432, -0.060714, 0.12033, -0.031772, 0.075286, -0.012571, -0.021244, -0.010488] },
|
|
4846
|
+
{ name: "vault_toggle_task", category: "tasks", tier: 1, descriptionHash: "9e59f412cc7b04fb", embedding: [-7157e-6, 0.068691, -0.080033, 0.085211, 0.028494, -0.037861, 5755e-6, -0.0567, -0.040328, -0.018398, -0.053979, -0.019058, 0.019943, 0.05068, 0.022449, -0.035737, -0.057746, 54e-5, 0.051082, -0.048161, 0.053253, -0.067078, 0.067549, 0.056464, -0.084351, -0.04609, -0.040298, -0.014429, -0.042649, -0.019135, 0.02352, -0.032486, -0.053418, 0.013655, 0.066441, 0.055064, -0.0511, 0.010122, -0.029676, -0.05559, -0.034092, -0.061218, -0.099612, -0.055806, -0.036283, -0.053714, -0.085826, -0.037485, -0.034529, 0.073316, 0.073078, -0.069471, 0.027784, 0.013774, -0.016999, 0.123501, -6565e-6, 3563e-6, -0.022656, -0.078162, 0.020521, -0.036296, -0.046019, -0.060272, 0.013693, 0.117972, -0.016318, -0.012428, 0.060026, -4729e-6, -0.017981, -0.011276, 0.068168, -0.057718, 0.055402, -0.020226, 4403e-6, -0.066016, 4912e-6, -0.071955, -0.020783, 9316e-6, -0.075836, 2347e-6, 0.031078, -544e-6, -0.040051, -6461e-6, 0.055967, -0.127535, 0.018869, -0.044684, 0.045203, -0.014203, -0.011549, -0.012343, -0.0918, 2001e-6, -0.013427, 0.021552, 0.0174, -0.01986, 0.025941, -596e-5, 0.125069, 0.034641, -759e-6, 0.040321, -0.055483, 0.041168, -3854e-6, 0.028426, 0.148802, 0.036124, -3447e-6, 0.044308, -0.022612, 0.111777, -0.017555, 0.042012, 0.170848, -0.018, 3815e-6, -0.086429, -0.020209, -0.047621, 0.029528, 0, 0.136545, -0.019932, -4875e-6, -0.036372, 0.078638, -0.065095, 0.057464, 0.024177, -0.031309, 0.058901, 0.043342, 0.017341, -0.04775, -0.046388, -0.017464, -0.050942, -4769e-6, 0.058546, 0.083255, -0.032102, -0.015533, -128e-5, -0.051537, -0.02417, 0.085415, -0.07476, 0.023871, -0.033462, -0.093575, 0.016795, -0.018907, 0.026865, 0.034316, -5629e-6, 0.031241, 0.02878, 0.012943, 0.015299, 2459e-6, -0.035065, 0.104848, -0.047503, 0.086887, -0.062688, -9156e-6, 1719e-6, 0.064381, -0.024208, 0.03843, -0.030182, 0.0439, 0.042445, -0.084822, -0.087042, 4498e-6, -0.139728, 0.03172, 6286e-6, 0.040086, -0.012505, 0.042491, -0.054171, -0.029652, -0.015954, -0.114914, 0.039317, -0.084857, 2693e-6, -1982e-6, 0.071994, -0.069775, 0.077235, -6772e-6, -0.060004, -0.015323, 0.030342, 0.033342, -0.031998, -0.027178, 0.011838, 0.07761, -0.049653, -0.096625, 0.057274, 0.012117, 8092e-6, 9407e-6, 0.036147, -0.051362, -0.093717, -0.057161, -0.013776, 0.063817, -0.020455, 0.057322, -0, 0.047982, -0.048899, -0.01059, 0.047503, 0.024703, -0.021066, 0.047937, -0.033406, -0.056612, 0.096815, -0.022917, -0.017031, 0.020933, -8381e-6, 8452e-6, 0.024614, -0.051062, -5478e-6, -0.014855, 0.06421, -0.028492, 0.062414, -0.032236, 0.094194, 0.034266, 0.011409, 0.070183, -0.024104, 0.108938, -3224e-6, -0.032344, -0.030347, 0.037886, 0.03944, 0.010348, -0.030405, -0.018608, -7483e-6, -0.035526, 0.037472, -0.035657, -0.032425, -0.042609, -0.019495, -0.051329, 0.097766, 0.056191, 0.068614, -0.101221, -0.05023, 0.023537, -0.013718, -0.058087, 0.018109, 0.035051, 0.039043, -0.055799, -0.098183, 0.042109, 0.034247, 0.050805, 0.021758, -6362e-6, -0.015405, 9746e-6, -0.091231, -0.010751, 0.034169, -3737e-6, 0.03872, 0.032144, -0.032053, 0.083181, -0.041226, -5151e-6, -0.014846, 0.014008, -0.06852, -9109e-6, 0.018454, -0.04444, -0.069191, -3108e-6, -0.031339, -0.035672, 7473e-6, -366e-5, 0.063524, -0.065045, 0.03921, -0.028936, -0.05629, 0.018737, -0.034096, 0.020308, -0, 0.031881, 0.014423, -0.02511, 1482e-6, -4013e-6, -0.060168, 0.027646, 0.055398, 0.030346, 4946e-6, 0.073031, -9172e-6, -932e-5, -0.017688, 0.047801, 0.048922, -0.05404, 0.160485, -6554e-6, -7414e-6, 0.015353, -0.011174, -0.032862, -0.037998, -0.056617, 0.051574, -0.035368, 0.094575, 0.133649, 0.021198, -0.012709, -0.054089, 0.015344, -0.026677, -0.03848, 0.038139, 0.03234, -0.013415, 0.031316, 0.078474, 0.101744, -0.02725, -0.032205, 0.06287, -0.140473, -0.012494, -0.024626, 0.047854, -0.011234, -0.031031, -1852e-6, -0.041482, 0.079265, 9847e-6, 0.017654, 0.042139, 0.096027, -0.116938, -0.029461, 0.033537, 0.110866, -0.015121, -0.01292, -8965e-6] },
|
|
4847
|
+
{ name: "vault_undo_last_mutation", category: "write", tier: 1, descriptionHash: "5f930ac6cbd55eb7", embedding: [-0.040022, 0.014611, -0.0208, 0.033614, 1746e-6, -0.054944, -0.049116, -5478e-6, 0.019154, -0.031886, 0.076977, 0.074362, 0.02667, -0.095702, -0.09029, -0.01695, -0.125127, 0.147074, -5014e-6, -0.016215, -0.017929, 0.028275, -0.020178, 0.084513, 0.02285, -0.034626, -0.04396, 0.046643, 0.010233, -0.11045, -0.036679, 0.113188, -965e-6, 0.022898, 0.033162, 0.084695, -0.036878, -0.027638, -2515e-6, -0.032751, 0.019814, -0.059516, -0.052886, -6422e-6, 0.02267, 0.010943, -0.050707, -0.041501, -0.046849, 0.026843, 0.066703, -0.067648, -0.02023, 0.058104, 0.033081, -7302e-6, 0.043739, 0.068681, 0.01337, 0.01594, 0.049942, 0.079253, -0.065436, 3323e-6, 0.032923, 0.039113, 0.098053, -0.058818, 0.113729, -0.065462, 0.054874, -0.082917, -0.056624, -0.045889, 6591e-6, 0.058777, -0.045405, 0.034868, -0.051469, 0.055671, -0.023957, -0.031298, 0.022108, -0.046567, -0.016023, 0.043193, 0.010153, 0.034071, 0.119497, 0.054309, -0.016822, -0.017866, 0.067597, -427e-5, -0.033641, 0.024168, 0.016517, -0.059303, 0.016076, 0.0135, -9719e-6, 269e-5, 0.061947, 4902e-6, 0.018272, -1934e-6, 0.061489, 1283e-6, -0.062196, -0.022958, -0.028564, -0.028682, 0.082891, 0.030496, 6326e-6, 0.070713, -0.071422, 0.063838, -0.119128, 0.075317, 0.095409, 0.013755, 0.048743, -0.048843, -0.140016, -0.041828, -0.035383, -0, 0.078093, -7044e-6, -0.061829, 0.031943, 0.04291, 4079e-6, 0.040373, -0.073501, -0.065256, 0.026225, 0.078008, -0.026441, -0.022996, -0.027099, -0.039319, -0.040908, -955e-5, 0.02355, -0.018993, 0.012355, 0.063949, 0.090856, -0.05077, -0.097547, 0.090674, 0.024469, -0.035373, -0.022593, -0.027776, 0.019816, -0.013419, 0.058235, -0.037201, 0.037708, -0.039793, -1922e-6, 0.043251, -0.086184, -0.034011, 0.023228, 0.020417, -5724e-6, -0.058923, -0.068318, 0.098678, -0.06144, 0.040025, 0.022585, 0.066837, 0.023989, 0.033874, 0.036251, -0.022122, -0.077118, -0.029481, -0.024922, 9959e-6, -0.056762, -0.077861, 0.06293, 0.082112, -0.028, -0.040853, -3333e-6, -0.028703, -0.013214, -0.071067, -0.035525, 0.017371, 0.070555, -0.044791, -0.054606, -0.050141, -4054e-6, -0.061555, -0.076735, 0.017047, 0.021842, -0.018299, -0.017314, -0.041398, 0.013602, -0.08532, 0.052363, -0.024444, 0.022419, 0.03682, 0.062677, -0.056789, -131e-6, 0.023743, -0.036704, 0.084924, -0.049049, 0.015677, 0, -0.023995, -0.066789, -0.020062, 0.085554, -0.028277, -0.038411, -0.016101, 0.025626, -0.046874, -0.02031, 0.02228, 0.046999, 0.028016, -0.024611, 0.063906, 886e-5, -0.02201, -0.031314, -0.020515, 0.085747, 0.088681, -0.035721, 0.013904, 0.057248, 0.011076, -0.025868, -0.014474, 0.051383, 0.077394, -0.053288, 0.04024, 0.017418, -5823e-6, 3559e-6, 0.045903, -0.031526, 0.014131, -0.027699, -0.048035, -0.018879, 0.031513, -9663e-6, -0.046541, -5495e-6, 0.012979, 0.058228, 0.036763, 0.010805, 0.067449, -0.056512, 0.087139, -0.020783, 0.065065, 556e-5, 0.033364, 0.016859, 0.074401, 1847e-6, 0.042472, -9277e-6, 0.049943, 0.027142, 4627e-6, 0.041863, -0.040805, -0.050016, -0.01055, 176e-6, -0.146045, 0.045729, -0.012634, 0.064804, 0.048178, -0.042105, 0.057559, -0.111732, -0.065125, -0.067605, 0.026544, -0.111938, 0.019028, 0.024623, -6541e-6, -0.012156, -0.026949, -6225e-6, -0.028756, 0.065661, 0.047692, -0.015485, -0.057461, -0.051127, 0.032573, -0.014625, -1378e-6, -0, -0.027303, 0.021555, -0.033404, 0.035303, 0.110309, -0.012479, 1839e-6, 0.125387, -0.02039, -0.091979, 0.014374, 0.049864, 0.035771, -0.038145, 0.0573, 0.027893, -0.058123, 0.017144, -1166e-6, -0.048829, -0.095271, 0.022835, 6226e-6, -0.03856, -0.042223, 0.040088, 0.101985, 0.147521, 0.0778, -0.056833, 0.030401, -0.072847, 0.082237, -948e-5, -0.095648, 0.036056, 2156e-6, -7777e-6, 0.078498, 0.075341, 0.01314, 0.021186, 0.045542, 0.029844, -0.163604, -0.066397, -0.017077, -0.022052, -0.026918, -0.074388, -0.022723, 8392e-6, -0.043728, 0.076106, -1887e-6, 0.055595, 0.060909, -0.032825, 0.025609, -9302e-6, 0.034275, 2396e-6, 0.018813, -0.044396] },
|
|
4848
|
+
{ name: "vault_update_frontmatter", category: "write", tier: 1, descriptionHash: "a47d40ffbd9b64fe", embedding: [3025e-6, 0.069481, -0.020214, 0.040912, 0.022417, -0.019862, -0.082628, -2122e-6, -0.014702, -0.016693, -0.029666, 3715e-6, 0.012231, -0.082566, 0.062312, 0.054372, -0.073285, 0.037987, -392e-6, -0.026554, -0.027998, 0.030671, 0.052947, 0.052299, -1558e-6, 0.028571, -0.066689, -0.02771, -0.016447, -0.019221, -1485e-6, 0.063806, 0.058962, 0.027227, 0.049323, 0.128016, -0.084259, 0.071075, -0.023717, -0.016094, 781e-5, -0.018086, -0.033762, 0.038799, -0.011419, -0.131204, -0.016022, -0.056764, 1797e-6, 6894e-6, 0.045712, -0.106872, -0.072278, 0.03821, -0.043272, 0.126332, -0.065271, 0.052426, -0.084185, -0.05245, 0.091997, 0.010353, 0.024533, -0.108528, 0.054086, 0.030548, 0.058701, 0.027134, 0.037303, 3885e-6, 0.093335, 0.023905, -0.02538, -0.048753, -0.033334, 0.037917, -7355e-6, 0.049192, -0.012558, -0.019817, 0.014961, -0.090752, -0.025464, 0.032226, 0.019772, -0.016976, -0.047508, -0.11282, -0.011829, -0.077957, 4306e-6, -0.117739, 0.030035, -0.0476, -0.010689, 0.067377, -0.029314, -0.052771, -281e-5, 0.033223, 6672e-6, -0.032222, 0.083968, 0.065554, 0.089385, 0.07532, 0.035532, 0.032166, -0.104153, 5974e-6, 0.060481, -81e-6, 0.077513, -0.040108, 0.034792, 0.044935, -0.015255, -0.038417, -0.038848, -0.015122, 0.147839, 0.014367, 0.098555, -0.053763, -0.040781, -0.121923, -3613e-6, 0, 0.091337, 0.127786, -0.02989, 0.010424, 0.039609, 3024e-6, 0.037395, -0.023207, 0.016547, 0.02837, 0.039847, 0.043012, -0.026068, -0.063308, -0.066829, -0.064504, 0.037346, 0.062652, 0.028708, 7765e-6, 0.028452, 0.071256, -0.089661, 29e-5, 0.054975, 0.024975, -59e-5, -0.049548, -0.058957, -5332e-6, 0.052174, 0.054414, 0.07973, 0.022847, -3052e-6, -1131e-6, -0.046505, -0.059425, 0.017253, -0.087945, 0.046749, 0.034301, 0.034753, -0.056932, 0.012403, -0.036254, -3975e-6, 0.050501, 0.071501, -0.041424, -0.050307, 0.02098, -0.070952, -0.014178, -0.02171, -0.112825, -4902e-6, -0.013906, 4102e-6, 8784e-6, 0.05713, -659e-5, -0.096118, 0.056165, -0.095933, 0.033638, -0.018831, -0.022721, 0.040962, 9661e-6, 2181e-6, 0.064708, -0.091218, 0.022571, -0.012976, -0.102114, -0.020311, 0.043877, 8261e-6, -0.068916, -0.021741, -0.07308, -0.083729, 0.123112, 1868e-6, 0.076771, 0.054204, -0.039255, -0.063251, -0.029438, -0.024632, -0.058136, 0.016283, -0.057538, 3035e-6, -0, 0.060903, -0.027032, -0.012369, 0.052551, 1392e-6, 0.053681, 0.055989, 0.035778, 0.020945, 0.061143, -0.034319, 0.057069, 995e-5, -0.063395, -0.040598, 0.024621, -0.056127, -0.070658, -8295e-6, 0.018973, -3332e-6, 0.032288, -0.035729, 0.122378, 123e-5, -0.03873, 9503e-6, -0.03015, 1905e-6, -0.063499, -0.02308, -0.023808, -0.020367, -8183e-6, -0.029822, -0.012347, 0.045784, -8798e-6, -0.120894, 0.016983, 0.022446, -0.049298, -0.106153, -0.028142, 0.019967, -0.032849, -8416e-6, 0.045188, -0.026318, -0.042142, 0.059717, -0.048322, -6355e-6, -0.026544, -0.013866, 0.023741, 0.017776, 2963e-6, -721e-5, 0.031464, 0.028063, 0.075207, 0.016429, -0.030109, 0.01775, -0.095344, -0.066561, 0.070308, -0.05202, 3433e-6, 1024e-6, -215e-5, 0.108162, 0.022196, 0.063718, 5453e-6, 0.017357, -0.079122, 0.114017, -0.043077, -0.038973, -9659e-6, 0.025343, 0.048606, -0.031496, 0.018673, 0.044212, 0.085459, -0.060066, 9528e-6, -0.062693, -0.022688, 0.015653, -8407e-6, 0.014172, -0, -0.030091, 0.088935, -0.13105, -0.02962, -1195e-6, -0.055068, 0.016722, 0.033949, 0.021043, -0.054953, -0.010191, 0.054551, -0.066554, -0.030681, -0.012529, 0.026151, -0.017135, 0.044823, -0.063156, -0.042643, 0.019409, 0.041693, -0.012822, -0.043482, 0.0586, 0.014575, 2409e-6, 0.037005, 0.050547, 0.02509, 0.041944, -0.069513, 0.07276, 0.016224, -6202e-6, 0.082265, 0.096653, -0.028571, 7785e-6, 0.103299, 0.034466, -0.019286, -5308e-6, 0.014758, -0.014162, -0.037214, -0.015413, 0.014221, 0.046202, -0.058354, 6031e-6, -0.034403, -3131e-6, -0.036972, -0.030123, 6947e-6, 0.102191, 0.061492, 0.05731, -0.01362, 0.131632, -0.065036, 0.02844, 0.03573] },
|
|
4849
|
+
{ name: "wikilink_feedback", category: "wikilinks", tier: 2, descriptionHash: "8cac16a861768b77", embedding: [-0.057719, -2005e-6, -0.046806, 0.08065, 0.025483, -0.029491, -0.031477, 0.072273, -0.012593, 0.020281, 0.01672, -0.052323, 0.035062, -3526e-6, -0.027752, 0.083636, 0.018952, 0.067645, 0.025101, -0.103489, 0.058623, 0.010979, 0.052207, 0.023203, 0.03579, -0.0676, -0.117394, 0.077013, 0.016933, -0.081211, -0.068116, 0.039832, -0.060332, 0.016068, -0.072331, 0.017061, 0.087072, -6006e-6, 0.045247, -0.043267, -3304e-6, -0.039659, 0.01329, 967e-6, -0.051123, 0.010289, -0.064966, -0.043007, -0.114022, 0.097008, -0.094459, -0.043015, 0.019798, 0.025427, 0.034083, 0.05947, -0.092207, 8879e-6, -0.045854, -0.042093, 0.014754, -8037e-6, -0.10821, 0.036374, 8375e-6, 0.027176, -0.016976, 0.036157, 0.045318, -0.069192, -0.057823, -0.027869, 467e-5, -0.019705, 0.034348, -0.038064, -0.040646, -183e-5, -0.052091, -0.098651, -2429e-6, 0.093318, -349e-5, 0.02069, 0.047832, -0.050209, 0.088497, 0.03934, -0.069302, 0.046895, 0.036568, 0.021862, 0.048473, -4537e-6, -0.055023, 0.045379, -0.014206, -0.093813, 0.059281, 0.065181, 0.02729, 0.048777, 5129e-6, -4269e-6, -0.025751, -0.027289, 2859e-6, 0.111919, 0.015338, 0.01992, -0.010135, 0.053951, -0.068423, -0.091846, 0.031074, -0.016728, -0.072743, 0.037474, 0.09044, 0.057709, 0.070423, 0.019593, -0.017762, -0.062535, 0.013188, 0.035787, -6689e-6, -0, 0.112942, 0.082273, -0.018112, 0.035911, -0.028441, 0.049559, -0.034345, -0.02976, -0.078178, -0.061287, -0.048487, 0.097205, -0.057776, 5081e-6, 0.047653, -4923e-6, -0.027732, 0.079916, -6013e-6, -4707e-6, 0.066569, -0.010828, 2653e-6, 0.055975, 0.15118, 7545e-6, 9619e-6, 0.037415, -0.125981, 0.018841, 0.056158, -0.049312, 779e-6, -0.015889, 0.040608, -5045e-6, -2548e-6, -0.043607, 0.031788, -0.079962, 3087e-6, -3396e-6, -0.078119, 0.019647, -0.044474, -4992e-6, -0.030746, -0.063407, -1206e-6, 0.03324, 0.036393, 5002e-6, -1554e-6, -4898e-6, 756e-5, -0.029319, -0.022553, -3373e-6, -0.031584, 0.065237, 0.025691, -0.014665, -0.063976, -0.106095, -0.075516, 0.046215, -0.045685, -0.027245, 0.038892, 393e-6, -0.056695, 0.04634, 0.029227, 0.020788, -0.021015, -0.06776, -0.110318, -0.121037, -0.042387, 0.050466, -0.020212, -0.077565, -0.083494, -0.017649, 0.041814, -9681e-6, 0.0567, -0.019874, -0.037093, -0.019616, -0.061441, 0.030222, 0.056308, 0.030386, -6365e-6, -0, -282e-6, -0.029324, 0.024137, 0.035718, -0.036665, -3989e-6, -6545e-6, -0.017627, 894e-6, 0.083372, 0.066233, -0.066723, -0.077913, 0.011673, -0.029407, -0.017474, -0.025672, -0.100527, 1721e-6, 0.073076, 0.034106, 0.073648, 0.010425, 0.103187, 0.023792, -3878e-6, 0.049821, -0.020578, 0.054715, -0.051505, 0.024512, -0.101163, 0.036605, 0.016313, 0.017718, -0.034398, 0.011365, -0.103661, -0.024432, 0.024748, 0.099225, 117e-5, -0.042435, -0.015554, -0.046782, 0.023628, -0.047377, 0.045117, -0.105363, -0.055288, 0.015294, 0.033592, -0.012232, -2774e-6, 705e-5, 0.030469, -0.023753, 0.016046, -0.042674, 0.032472, -0.013246, 0.047424, -0.05479, 0.0882, 0.079681, -0.03543, 0.025255, -0.031942, -0.034701, 0.070732, -0.014497, 0.032277, 0.037822, -0.089811, 0.087327, -0.030272, -0.019864, -0.030145, -0.03868, -0.032653, -0.062026, 5934e-6, 0.107528, 0.017577, 0.037664, -0.01608, 0.051227, 0.06378, 0.034422, -0.056039, -2212e-6, -0.050331, -0.063861, 0.082896, 0.031453, -0, -0.026478, 0.021685, 0.019193, 0.043299, 0.017727, 7282e-6, 0.025712, 0.073525, -0.035463, 3542e-6, 0.05383, -0.012838, -0.118541, -0.050014, 0.115059, -0.05719, 0.012378, 0.095752, -8969e-6, -0.078867, -0.039752, 3976e-6, -0.010662, -8019e-6, 1359e-6, 0.022637, -2773e-6, 0.111781, 0.010934, -0.088178, 0.033068, 0.011601, -573e-5, -0.066258, -218e-6, 0.069654, -0.026662, 0.033676, 0.028944, 0.02856, 0.057065, 0.05222, -0.036216, 0.107696, -0.010027, 0.04889, -9379e-6, -0.014577, 0.017649, -0.11746, 0.014457, -0.053851, 0.033141, 0.023217, -0.044481, 0.100295, 0.035812, -0.051222, -0.030808, -0.047731, 0.121694, 7653e-6, -0.033495, 0.055734] }
|
|
4850
|
+
]
|
|
4851
|
+
};
|
|
4852
|
+
}
|
|
4853
|
+
});
|
|
4854
|
+
|
|
4388
4855
|
// src/core/write/constants.ts
|
|
4389
4856
|
function estimateTokens(content) {
|
|
4390
4857
|
const str = typeof content === "string" ? content : JSON.stringify(content);
|
|
@@ -6061,6 +6528,7 @@ import { fileURLToPath as fileURLToPath2 } from "url";
|
|
|
6061
6528
|
import { dirname as dirname7, join as join21 } from "path";
|
|
6062
6529
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
6063
6530
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
6531
|
+
import { performance as performance2 } from "node:perf_hooks";
|
|
6064
6532
|
|
|
6065
6533
|
// src/core/read/graph.ts
|
|
6066
6534
|
init_vault();
|
|
@@ -7592,6 +8060,19 @@ function createStepTracker() {
|
|
|
7592
8060
|
steps.push({ name: current.name, duration_ms: Date.now() - current.startTime, input: current.input, output });
|
|
7593
8061
|
current = null;
|
|
7594
8062
|
},
|
|
8063
|
+
/** Close an already-started step as skipped without leaving current dangling. */
|
|
8064
|
+
skipCurrent(reason, output) {
|
|
8065
|
+
if (!current) return;
|
|
8066
|
+
steps.push({
|
|
8067
|
+
name: current.name,
|
|
8068
|
+
duration_ms: Date.now() - current.startTime,
|
|
8069
|
+
input: current.input,
|
|
8070
|
+
output: output ?? {},
|
|
8071
|
+
skipped: true,
|
|
8072
|
+
skip_reason: reason
|
|
8073
|
+
});
|
|
8074
|
+
current = null;
|
|
8075
|
+
},
|
|
7595
8076
|
skip(name, reason) {
|
|
7596
8077
|
steps.push({ name, duration_ms: 0, input: {}, output: {}, skipped: true, skip_reason: reason });
|
|
7597
8078
|
}
|
|
@@ -8528,28 +9009,36 @@ init_wikilinkFeedback();
|
|
|
8528
9009
|
init_corrections();
|
|
8529
9010
|
init_edgeWeights();
|
|
8530
9011
|
var PIPELINE_TOTAL_STEPS = 22;
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
|
-
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
|
|
8544
|
-
|
|
8545
|
-
|
|
8546
|
-
return pipelineActivity;
|
|
9012
|
+
function createEmptyPipelineActivity() {
|
|
9013
|
+
return {
|
|
9014
|
+
busy: false,
|
|
9015
|
+
trigger: null,
|
|
9016
|
+
started_at: null,
|
|
9017
|
+
current_step: null,
|
|
9018
|
+
completed_steps: 0,
|
|
9019
|
+
total_steps: PIPELINE_TOTAL_STEPS,
|
|
9020
|
+
pending_events: 0,
|
|
9021
|
+
last_completed_at: null,
|
|
9022
|
+
last_completed_trigger: null,
|
|
9023
|
+
last_completed_duration_ms: null,
|
|
9024
|
+
last_completed_files: null,
|
|
9025
|
+
last_completed_steps: []
|
|
9026
|
+
};
|
|
8547
9027
|
}
|
|
8548
9028
|
async function runStep(name, tracker, meta, fn) {
|
|
8549
9029
|
tracker.start(name, meta);
|
|
8550
9030
|
try {
|
|
8551
9031
|
const result = await fn();
|
|
8552
|
-
|
|
9032
|
+
if (result && "kind" in result) {
|
|
9033
|
+
const tagged = result;
|
|
9034
|
+
if (tagged.kind === "skipped") {
|
|
9035
|
+
tracker.skipCurrent(tagged.reason, tagged.output);
|
|
9036
|
+
} else {
|
|
9037
|
+
tracker.end(tagged.output);
|
|
9038
|
+
}
|
|
9039
|
+
} else {
|
|
9040
|
+
tracker.end(result);
|
|
9041
|
+
}
|
|
8553
9042
|
} catch (e) {
|
|
8554
9043
|
tracker.end({ error: String(e) });
|
|
8555
9044
|
serverLog("watcher", `${name}: failed: ${e}`, "error");
|
|
@@ -8558,26 +9047,32 @@ async function runStep(name, tracker, meta, fn) {
|
|
|
8558
9047
|
var PipelineRunner = class {
|
|
8559
9048
|
constructor(p) {
|
|
8560
9049
|
this.p = p;
|
|
9050
|
+
this.activity = p.ctx.pipelineActivity;
|
|
8561
9051
|
const baseTracker = createStepTracker();
|
|
8562
9052
|
this.tracker = {
|
|
8563
9053
|
steps: baseTracker.steps,
|
|
8564
|
-
start(name, input) {
|
|
8565
|
-
|
|
9054
|
+
start: (name, input) => {
|
|
9055
|
+
this.activity.current_step = name;
|
|
8566
9056
|
baseTracker.start(name, input);
|
|
8567
9057
|
},
|
|
8568
|
-
end(output) {
|
|
9058
|
+
end: (output) => {
|
|
8569
9059
|
baseTracker.end(output);
|
|
8570
|
-
|
|
9060
|
+
this.activity.completed_steps = baseTracker.steps.length;
|
|
8571
9061
|
},
|
|
8572
|
-
|
|
9062
|
+
skipCurrent: (reason, output) => {
|
|
9063
|
+
baseTracker.skipCurrent(reason, output);
|
|
9064
|
+
this.activity.completed_steps = baseTracker.steps.length;
|
|
9065
|
+
},
|
|
9066
|
+
skip: (name, reason) => {
|
|
8573
9067
|
baseTracker.skip(name, reason);
|
|
8574
|
-
|
|
9068
|
+
this.activity.completed_steps = baseTracker.steps.length;
|
|
8575
9069
|
}
|
|
8576
9070
|
};
|
|
8577
9071
|
this.batchStart = Date.now();
|
|
8578
9072
|
}
|
|
8579
9073
|
tracker;
|
|
8580
9074
|
batchStart;
|
|
9075
|
+
activity;
|
|
8581
9076
|
// Shared state between steps
|
|
8582
9077
|
entitiesAfter = [];
|
|
8583
9078
|
entitiesBefore = [];
|
|
@@ -8589,13 +9084,13 @@ var PipelineRunner = class {
|
|
|
8589
9084
|
suggestionResults = [];
|
|
8590
9085
|
async run() {
|
|
8591
9086
|
const { p, tracker } = this;
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8597
|
-
|
|
8598
|
-
|
|
9087
|
+
this.activity.busy = true;
|
|
9088
|
+
this.activity.trigger = "watcher";
|
|
9089
|
+
this.activity.started_at = this.batchStart;
|
|
9090
|
+
this.activity.current_step = null;
|
|
9091
|
+
this.activity.completed_steps = 0;
|
|
9092
|
+
this.activity.total_steps = PIPELINE_TOTAL_STEPS;
|
|
9093
|
+
this.activity.pending_events = p.events.length;
|
|
8599
9094
|
try {
|
|
8600
9095
|
await runStep("drain_proactive_queue", tracker, {}, () => this.drainQueue());
|
|
8601
9096
|
await this.indexRebuild();
|
|
@@ -8608,8 +9103,8 @@ var PipelineRunner = class {
|
|
|
8608
9103
|
if (p.sd) {
|
|
8609
9104
|
await runStep("edge_weights", tracker, {}, () => this.edgeWeights());
|
|
8610
9105
|
}
|
|
8611
|
-
await this.noteEmbeddings();
|
|
8612
|
-
await this.entityEmbeddings();
|
|
9106
|
+
await runStep("note_embeddings", tracker, { files: p.events.length }, () => this.noteEmbeddings());
|
|
9107
|
+
await runStep("entity_embeddings", tracker, { files: p.events.length }, () => this.entityEmbeddings());
|
|
8613
9108
|
await this.indexCache();
|
|
8614
9109
|
await this.taskCache();
|
|
8615
9110
|
await runStep("forward_links", tracker, { files: p.events.length }, () => this.forwardLinks());
|
|
@@ -8635,13 +9130,13 @@ var PipelineRunner = class {
|
|
|
8635
9130
|
steps: tracker.steps
|
|
8636
9131
|
});
|
|
8637
9132
|
}
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
|
|
8642
|
-
|
|
8643
|
-
|
|
8644
|
-
|
|
9133
|
+
this.activity.busy = false;
|
|
9134
|
+
this.activity.current_step = null;
|
|
9135
|
+
this.activity.last_completed_at = Date.now();
|
|
9136
|
+
this.activity.last_completed_trigger = "watcher";
|
|
9137
|
+
this.activity.last_completed_duration_ms = duration;
|
|
9138
|
+
this.activity.last_completed_files = p.events.length;
|
|
9139
|
+
this.activity.last_completed_steps = tracker.steps.map((s) => s.name);
|
|
8645
9140
|
serverLog("watcher", `Batch complete: ${p.events.length} files, ${duration}ms, ${tracker.steps.length} steps`);
|
|
8646
9141
|
} catch (err) {
|
|
8647
9142
|
p.updateIndexState("error", err instanceof Error ? err : new Error(String(err)));
|
|
@@ -8657,13 +9152,13 @@ var PipelineRunner = class {
|
|
|
8657
9152
|
steps: tracker.steps
|
|
8658
9153
|
});
|
|
8659
9154
|
}
|
|
8660
|
-
|
|
8661
|
-
|
|
8662
|
-
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
|
|
9155
|
+
this.activity.busy = false;
|
|
9156
|
+
this.activity.current_step = null;
|
|
9157
|
+
this.activity.last_completed_at = Date.now();
|
|
9158
|
+
this.activity.last_completed_trigger = "watcher";
|
|
9159
|
+
this.activity.last_completed_duration_ms = duration;
|
|
9160
|
+
this.activity.last_completed_files = p.events.length;
|
|
9161
|
+
this.activity.last_completed_steps = tracker.steps.map((s) => s.name);
|
|
8667
9162
|
serverLog("watcher", `Failed to rebuild index: ${err instanceof Error ? err.message : err}`, "error");
|
|
8668
9163
|
}
|
|
8669
9164
|
}
|
|
@@ -8856,70 +9351,66 @@ var PipelineRunner = class {
|
|
|
8856
9351
|
}
|
|
8857
9352
|
// ── Step 4: Note embeddings ───────────────────────────────────────
|
|
8858
9353
|
async noteEmbeddings() {
|
|
8859
|
-
const { p
|
|
8860
|
-
if (hasEmbeddingsIndex()) {
|
|
8861
|
-
|
|
8862
|
-
|
|
8863
|
-
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
if (event.type === "delete") {
|
|
8867
|
-
removeEmbedding(event.path);
|
|
8868
|
-
embRemoved++;
|
|
8869
|
-
} else if (event.path.endsWith(".md")) {
|
|
8870
|
-
const absPath = path15.join(p.vp, event.path);
|
|
8871
|
-
await updateEmbedding(event.path, absPath);
|
|
8872
|
-
embUpdated++;
|
|
8873
|
-
}
|
|
8874
|
-
} catch {
|
|
8875
|
-
}
|
|
8876
|
-
}
|
|
8877
|
-
let orphansRemoved = 0;
|
|
9354
|
+
const { p } = this;
|
|
9355
|
+
if (!hasEmbeddingsIndex()) {
|
|
9356
|
+
return { kind: "skipped", reason: "not built" };
|
|
9357
|
+
}
|
|
9358
|
+
let embUpdated = 0;
|
|
9359
|
+
let embRemoved = 0;
|
|
9360
|
+
for (const event of p.events) {
|
|
8878
9361
|
try {
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
9362
|
+
if (event.type === "delete") {
|
|
9363
|
+
removeEmbedding(event.path);
|
|
9364
|
+
embRemoved++;
|
|
9365
|
+
} else if (event.path.endsWith(".md")) {
|
|
9366
|
+
const absPath = path15.join(p.vp, event.path);
|
|
9367
|
+
await updateEmbedding(event.path, absPath);
|
|
9368
|
+
embUpdated++;
|
|
9369
|
+
}
|
|
9370
|
+
} catch {
|
|
8882
9371
|
}
|
|
8883
|
-
tracker.end({ updated: embUpdated, removed: embRemoved, orphans_removed: orphansRemoved });
|
|
8884
|
-
serverLog("watcher", `Note embeddings: ${embUpdated} updated, ${embRemoved} removed, ${orphansRemoved} orphans cleaned`);
|
|
8885
|
-
} else {
|
|
8886
|
-
tracker.skip("note_embeddings", "not built");
|
|
8887
9372
|
}
|
|
9373
|
+
let orphansRemoved = 0;
|
|
9374
|
+
try {
|
|
9375
|
+
orphansRemoved = removeOrphanedNoteEmbeddings();
|
|
9376
|
+
} catch (e) {
|
|
9377
|
+
serverLog("watcher", `Note embedding orphan cleanup failed: ${e}`, "error");
|
|
9378
|
+
}
|
|
9379
|
+
serverLog("watcher", `Note embeddings: ${embUpdated} updated, ${embRemoved} removed, ${orphansRemoved} orphans cleaned`);
|
|
9380
|
+
return { kind: "done", output: { updated: embUpdated, removed: embRemoved, orphans_removed: orphansRemoved } };
|
|
8888
9381
|
}
|
|
8889
9382
|
// ── Step 5: Entity embeddings ─────────────────────────────────────
|
|
8890
9383
|
async entityEmbeddings() {
|
|
8891
|
-
const { p
|
|
8892
|
-
if (hasEntityEmbeddingsIndex()
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
8896
|
-
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
|
|
8900
|
-
|
|
8901
|
-
|
|
8902
|
-
|
|
8903
|
-
|
|
8904
|
-
|
|
8905
|
-
|
|
8906
|
-
|
|
8907
|
-
|
|
8908
|
-
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
|
|
9384
|
+
const { p } = this;
|
|
9385
|
+
if (!hasEntityEmbeddingsIndex() || !p.sd) {
|
|
9386
|
+
return { kind: "skipped", reason: !p.sd ? "no sd" : "not built" };
|
|
9387
|
+
}
|
|
9388
|
+
let entEmbUpdated = 0;
|
|
9389
|
+
let entEmbOrphansRemoved = 0;
|
|
9390
|
+
const entEmbNames = [];
|
|
9391
|
+
try {
|
|
9392
|
+
const allEntities = getAllEntitiesFromDb(p.sd);
|
|
9393
|
+
for (const event of p.events) {
|
|
9394
|
+
if (event.type === "delete" || !event.path.endsWith(".md")) continue;
|
|
9395
|
+
const matching = allEntities.filter((e) => e.path === event.path);
|
|
9396
|
+
for (const entity of matching) {
|
|
9397
|
+
await updateEntityEmbedding(entity.name, {
|
|
9398
|
+
name: entity.name,
|
|
9399
|
+
path: entity.path,
|
|
9400
|
+
category: entity.category,
|
|
9401
|
+
aliases: entity.aliases
|
|
9402
|
+
}, p.vp);
|
|
9403
|
+
entEmbUpdated++;
|
|
9404
|
+
entEmbNames.push(entity.name);
|
|
8912
9405
|
}
|
|
8913
|
-
const currentNames = new Set(allEntities.map((e) => e.name));
|
|
8914
|
-
entEmbOrphansRemoved = removeOrphanedEntityEmbeddings(currentNames);
|
|
8915
|
-
} catch (e) {
|
|
8916
|
-
serverLog("watcher", `Entity embedding update/orphan cleanup failed: ${e}`, "error");
|
|
8917
9406
|
}
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
}
|
|
8921
|
-
|
|
9407
|
+
const currentNames = new Set(allEntities.map((e) => e.name));
|
|
9408
|
+
entEmbOrphansRemoved = removeOrphanedEntityEmbeddings(currentNames);
|
|
9409
|
+
} catch (e) {
|
|
9410
|
+
serverLog("watcher", `Entity embedding update/orphan cleanup failed: ${e}`, "error");
|
|
8922
9411
|
}
|
|
9412
|
+
serverLog("watcher", `Entity embeddings: ${entEmbUpdated} updated, ${entEmbOrphansRemoved} orphans cleaned`);
|
|
9413
|
+
return { kind: "done", output: { updated: entEmbUpdated, updated_entities: entEmbNames.slice(0, 10), orphans_removed: entEmbOrphansRemoved } };
|
|
8923
9414
|
}
|
|
8924
9415
|
// ── Step 6: Index cache ───────────────────────────────────────────
|
|
8925
9416
|
async indexCache() {
|
|
@@ -9525,6 +10016,293 @@ async function flushLogs() {
|
|
|
9525
10016
|
|
|
9526
10017
|
// src/index.ts
|
|
9527
10018
|
init_embeddings();
|
|
10019
|
+
|
|
10020
|
+
// src/core/read/toolRouting.ts
|
|
10021
|
+
init_embeddings();
|
|
10022
|
+
init_vault_scope();
|
|
10023
|
+
var MANIFEST_VERSION = 1;
|
|
10024
|
+
var MIN_COSINE = 0.3;
|
|
10025
|
+
var MAX_ACTIVATIONS = 3;
|
|
10026
|
+
var MIN_QUERY_TOKENS = 2;
|
|
10027
|
+
var MIN_QUERY_CHARS = 12;
|
|
10028
|
+
var routingIndex = null;
|
|
10029
|
+
var manifestModel = null;
|
|
10030
|
+
var effectivenessSnapshots = /* @__PURE__ */ new Map();
|
|
10031
|
+
var EFFECTIVENESS_PRIOR_MEAN = 0.8;
|
|
10032
|
+
async function initToolRouting() {
|
|
10033
|
+
try {
|
|
10034
|
+
const mod = await Promise.resolve().then(() => (init_tool_embeddings_generated(), tool_embeddings_generated_exports));
|
|
10035
|
+
const manifest = mod.TOOL_EMBEDDINGS_MANIFEST;
|
|
10036
|
+
return loadFromManifest(manifest);
|
|
10037
|
+
} catch {
|
|
10038
|
+
routingIndex = null;
|
|
10039
|
+
manifestModel = null;
|
|
10040
|
+
return false;
|
|
10041
|
+
}
|
|
10042
|
+
}
|
|
10043
|
+
function hasToolRouting() {
|
|
10044
|
+
return routingIndex !== null && routingIndex.length > 0;
|
|
10045
|
+
}
|
|
10046
|
+
function getToolRoutingMode(toolTierMode2) {
|
|
10047
|
+
const env = process.env.FLYWHEEL_TOOL_ROUTING?.trim().toLowerCase();
|
|
10048
|
+
if (env === "pattern" || env === "hybrid" || env === "semantic") return env;
|
|
10049
|
+
return toolTierMode2 === "tiered" ? "hybrid" : "pattern";
|
|
10050
|
+
}
|
|
10051
|
+
async function getSemanticActivations(query) {
|
|
10052
|
+
return rankAndCollapse(query, routingIndex, hasToolRouting(), manifestModel ?? "");
|
|
10053
|
+
}
|
|
10054
|
+
function loadEffectivenessSnapshot(vaultName, scores) {
|
|
10055
|
+
if (scores.size > 0) {
|
|
10056
|
+
effectivenessSnapshots.set(vaultName, scores);
|
|
10057
|
+
} else {
|
|
10058
|
+
effectivenessSnapshots.delete(vaultName);
|
|
10059
|
+
}
|
|
10060
|
+
}
|
|
10061
|
+
function getActiveEffectivenessSnapshot() {
|
|
10062
|
+
const scope = getActiveScopeOrNull();
|
|
10063
|
+
if (!scope?.name) return null;
|
|
10064
|
+
return effectivenessSnapshots.get(scope.name) ?? null;
|
|
10065
|
+
}
|
|
10066
|
+
function validateManifest(manifest) {
|
|
10067
|
+
return !!(manifest && manifest.version === MANIFEST_VERSION && manifest.dims > 0 && manifest.model && Array.isArray(manifest.tools) && manifest.tools.length > 0);
|
|
10068
|
+
}
|
|
10069
|
+
function loadFromManifest(manifest) {
|
|
10070
|
+
if (!validateManifest(manifest)) {
|
|
10071
|
+
routingIndex = null;
|
|
10072
|
+
manifestModel = null;
|
|
10073
|
+
return false;
|
|
10074
|
+
}
|
|
10075
|
+
const records = [];
|
|
10076
|
+
for (const tool of manifest.tools) {
|
|
10077
|
+
if (Array.isArray(tool.embedding) && tool.embedding.length === manifest.dims) {
|
|
10078
|
+
records.push({
|
|
10079
|
+
name: tool.name,
|
|
10080
|
+
category: tool.category,
|
|
10081
|
+
tier: tool.tier,
|
|
10082
|
+
embedding: new Float32Array(tool.embedding)
|
|
10083
|
+
});
|
|
10084
|
+
}
|
|
10085
|
+
}
|
|
10086
|
+
if (records.length === 0) {
|
|
10087
|
+
routingIndex = null;
|
|
10088
|
+
manifestModel = null;
|
|
10089
|
+
return false;
|
|
10090
|
+
}
|
|
10091
|
+
routingIndex = records;
|
|
10092
|
+
manifestModel = manifest.model;
|
|
10093
|
+
return true;
|
|
10094
|
+
}
|
|
10095
|
+
function isQueryTooShort(query) {
|
|
10096
|
+
const nonSpaceChars = query.replace(/\s/g, "").length;
|
|
10097
|
+
if (nonSpaceChars < MIN_QUERY_CHARS) return true;
|
|
10098
|
+
const tokens = query.trim().split(/\s+/);
|
|
10099
|
+
if (tokens.length < MIN_QUERY_TOKENS) return true;
|
|
10100
|
+
return false;
|
|
10101
|
+
}
|
|
10102
|
+
async function rankAndCollapse(query, index, isValid, model, embedFn, injectedEffectiveness) {
|
|
10103
|
+
if (!isValid || !index || index.length === 0) return [];
|
|
10104
|
+
if (!embedFn) {
|
|
10105
|
+
try {
|
|
10106
|
+
const activeModel = getActiveModelId();
|
|
10107
|
+
if (activeModel !== model) return [];
|
|
10108
|
+
} catch {
|
|
10109
|
+
}
|
|
10110
|
+
}
|
|
10111
|
+
if (isQueryTooShort(query)) return [];
|
|
10112
|
+
const embed = embedFn ?? embedTextCached;
|
|
10113
|
+
const queryEmbedding = await embed(query);
|
|
10114
|
+
const effectivenessSnapshot = injectedEffectiveness ?? getActiveEffectivenessSnapshot();
|
|
10115
|
+
const scored = [];
|
|
10116
|
+
for (const record of index) {
|
|
10117
|
+
if (record.tier === 1) continue;
|
|
10118
|
+
const cosine = cosineSimilarity(queryEmbedding, record.embedding);
|
|
10119
|
+
let adjustedScore = cosine;
|
|
10120
|
+
if (effectivenessSnapshot) {
|
|
10121
|
+
const eff = effectivenessSnapshot.get(record.name);
|
|
10122
|
+
if (eff !== void 0 && eff < EFFECTIVENESS_PRIOR_MEAN) {
|
|
10123
|
+
adjustedScore = cosine * (eff / EFFECTIVENESS_PRIOR_MEAN);
|
|
10124
|
+
}
|
|
10125
|
+
}
|
|
10126
|
+
if (adjustedScore >= MIN_COSINE) {
|
|
10127
|
+
scored.push({
|
|
10128
|
+
name: record.name,
|
|
10129
|
+
category: record.category,
|
|
10130
|
+
tier: record.tier,
|
|
10131
|
+
score: Math.round(adjustedScore * 1e3) / 1e3
|
|
10132
|
+
});
|
|
10133
|
+
}
|
|
10134
|
+
}
|
|
10135
|
+
const categoryBest = /* @__PURE__ */ new Map();
|
|
10136
|
+
for (const hit of scored) {
|
|
10137
|
+
const existing = categoryBest.get(hit.category);
|
|
10138
|
+
if (!existing || hit.score > existing.score) {
|
|
10139
|
+
categoryBest.set(hit.category, { tier: hit.tier, score: hit.score });
|
|
10140
|
+
}
|
|
10141
|
+
}
|
|
10142
|
+
const activations = Array.from(categoryBest.entries()).map(([category, { tier, score }]) => ({ category, tier, score })).sort((a, b) => b.score - a.score).slice(0, MAX_ACTIVATIONS);
|
|
10143
|
+
return activations;
|
|
10144
|
+
}
|
|
10145
|
+
|
|
10146
|
+
// src/core/shared/toolSelectionFeedback.ts
|
|
10147
|
+
var PRIOR_ALPHA2 = 4;
|
|
10148
|
+
var PRIOR_BETA2 = 1;
|
|
10149
|
+
function recordToolSelectionFeedback(stateDb2, feedback) {
|
|
10150
|
+
let toolName = feedback.tool_name ?? "";
|
|
10151
|
+
let queryContext = null;
|
|
10152
|
+
let sessionId = feedback.session_id ?? null;
|
|
10153
|
+
if (feedback.tool_invocation_id) {
|
|
10154
|
+
const row = stateDb2.db.prepare(
|
|
10155
|
+
"SELECT tool_name, query_context, session_id FROM tool_invocations WHERE id = ?"
|
|
10156
|
+
).get(feedback.tool_invocation_id);
|
|
10157
|
+
if (row) {
|
|
10158
|
+
toolName = row.tool_name;
|
|
10159
|
+
queryContext = row.query_context;
|
|
10160
|
+
sessionId = row.session_id ?? sessionId;
|
|
10161
|
+
}
|
|
10162
|
+
}
|
|
10163
|
+
if (!toolName) {
|
|
10164
|
+
throw new Error("tool_name is required when tool_invocation_id is not provided or not found");
|
|
10165
|
+
}
|
|
10166
|
+
const result = stateDb2.db.prepare(
|
|
10167
|
+
`INSERT INTO tool_selection_feedback
|
|
10168
|
+
(timestamp, tool_invocation_id, tool_name, query_context, expected_tool, expected_category, correct, source, session_id)
|
|
10169
|
+
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)`
|
|
10170
|
+
).run(
|
|
10171
|
+
Date.now(),
|
|
10172
|
+
feedback.tool_invocation_id ?? null,
|
|
10173
|
+
toolName,
|
|
10174
|
+
queryContext,
|
|
10175
|
+
feedback.expected_tool ?? null,
|
|
10176
|
+
feedback.expected_category ?? null,
|
|
10177
|
+
feedback.correct ? 1 : 0,
|
|
10178
|
+
feedback.source ?? "explicit",
|
|
10179
|
+
sessionId
|
|
10180
|
+
);
|
|
10181
|
+
return Number(result.lastInsertRowid);
|
|
10182
|
+
}
|
|
10183
|
+
function getToolSelectionList(stateDb2, limit = 50) {
|
|
10184
|
+
const rows = stateDb2.db.prepare(
|
|
10185
|
+
`SELECT * FROM tool_selection_feedback ORDER BY timestamp DESC LIMIT ?`
|
|
10186
|
+
).all(limit);
|
|
10187
|
+
return rows.map((r) => ({
|
|
10188
|
+
id: r.id,
|
|
10189
|
+
timestamp: r.timestamp,
|
|
10190
|
+
tool_invocation_id: r.tool_invocation_id,
|
|
10191
|
+
tool_name: r.tool_name,
|
|
10192
|
+
query_context: r.query_context,
|
|
10193
|
+
expected_tool: r.expected_tool,
|
|
10194
|
+
expected_category: r.expected_category,
|
|
10195
|
+
correct: r.correct === null ? null : r.correct === 1,
|
|
10196
|
+
source: r.source,
|
|
10197
|
+
rule_id: r.rule_id,
|
|
10198
|
+
rule_version: r.rule_version,
|
|
10199
|
+
session_id: r.session_id
|
|
10200
|
+
}));
|
|
10201
|
+
}
|
|
10202
|
+
function getToolSelectionStats(stateDb2, daysBack = 30) {
|
|
10203
|
+
const tableExists = stateDb2.db.prepare(
|
|
10204
|
+
"SELECT name FROM sqlite_master WHERE type='table' AND name='tool_selection_feedback'"
|
|
10205
|
+
).get();
|
|
10206
|
+
if (!tableExists) return [];
|
|
10207
|
+
const cutoff = Date.now() - daysBack * 24 * 60 * 60 * 1e3;
|
|
10208
|
+
const rows = stateDb2.db.prepare(`
|
|
10209
|
+
SELECT
|
|
10210
|
+
tool_name,
|
|
10211
|
+
COUNT(*) as total_feedback,
|
|
10212
|
+
SUM(CASE WHEN correct = 1 THEN 1 ELSE 0 END) as correct_count,
|
|
10213
|
+
SUM(CASE WHEN correct = 0 THEN 1 ELSE 0 END) as wrong_count
|
|
10214
|
+
FROM tool_selection_feedback
|
|
10215
|
+
WHERE timestamp >= ?
|
|
10216
|
+
AND source = 'explicit'
|
|
10217
|
+
AND correct IS NOT NULL
|
|
10218
|
+
GROUP BY tool_name
|
|
10219
|
+
ORDER BY total_feedback DESC
|
|
10220
|
+
`).all(cutoff);
|
|
10221
|
+
return rows.map((r) => {
|
|
10222
|
+
const alpha = PRIOR_ALPHA2 + r.correct_count;
|
|
10223
|
+
const beta = PRIOR_BETA2 + r.wrong_count;
|
|
10224
|
+
return {
|
|
10225
|
+
tool_name: r.tool_name,
|
|
10226
|
+
total_feedback: r.total_feedback,
|
|
10227
|
+
correct_count: r.correct_count,
|
|
10228
|
+
wrong_count: r.wrong_count,
|
|
10229
|
+
posterior_accuracy: Math.round(alpha / (alpha + beta) * 1e3) / 1e3
|
|
10230
|
+
};
|
|
10231
|
+
});
|
|
10232
|
+
}
|
|
10233
|
+
function getToolEffectivenessScores(stateDb2, minObservations = 15) {
|
|
10234
|
+
const stats = getToolSelectionStats(stateDb2, 365);
|
|
10235
|
+
const scores = /* @__PURE__ */ new Map();
|
|
10236
|
+
for (const s of stats) {
|
|
10237
|
+
if (s.total_feedback >= minObservations) {
|
|
10238
|
+
scores.set(s.tool_name, s.posterior_accuracy);
|
|
10239
|
+
}
|
|
10240
|
+
}
|
|
10241
|
+
return scores;
|
|
10242
|
+
}
|
|
10243
|
+
function getHeuristicMisroutes(stateDb2, limit = 50) {
|
|
10244
|
+
const rows = stateDb2.db.prepare(
|
|
10245
|
+
`SELECT * FROM tool_selection_feedback
|
|
10246
|
+
WHERE source = 'heuristic' AND correct IS NULL
|
|
10247
|
+
ORDER BY timestamp DESC LIMIT ?`
|
|
10248
|
+
).all(limit);
|
|
10249
|
+
return rows.map((r) => ({
|
|
10250
|
+
id: r.id,
|
|
10251
|
+
timestamp: r.timestamp,
|
|
10252
|
+
tool_invocation_id: r.tool_invocation_id,
|
|
10253
|
+
tool_name: r.tool_name,
|
|
10254
|
+
query_context: r.query_context,
|
|
10255
|
+
expected_tool: r.expected_tool,
|
|
10256
|
+
expected_category: r.expected_category,
|
|
10257
|
+
correct: null,
|
|
10258
|
+
source: "heuristic",
|
|
10259
|
+
rule_id: r.rule_id,
|
|
10260
|
+
rule_version: r.rule_version,
|
|
10261
|
+
session_id: r.session_id
|
|
10262
|
+
}));
|
|
10263
|
+
}
|
|
10264
|
+
function getToolSelectionReport(stateDb2, daysBack = 7) {
|
|
10265
|
+
const cutoff = Date.now() - daysBack * 24 * 60 * 60 * 1e3;
|
|
10266
|
+
const totals = stateDb2.db.prepare(`
|
|
10267
|
+
SELECT
|
|
10268
|
+
COUNT(*) as total_feedback,
|
|
10269
|
+
SUM(CASE WHEN correct = 1 THEN 1 ELSE 0 END) as confirmed_correct,
|
|
10270
|
+
SUM(CASE WHEN correct = 0 THEN 1 ELSE 0 END) as confirmed_wrong
|
|
10271
|
+
FROM tool_selection_feedback
|
|
10272
|
+
WHERE timestamp >= ?
|
|
10273
|
+
AND source = 'explicit'
|
|
10274
|
+
AND correct IS NOT NULL
|
|
10275
|
+
`).get(cutoff);
|
|
10276
|
+
if (totals.total_feedback === 0) return null;
|
|
10277
|
+
const wrongTools = stateDb2.db.prepare(`
|
|
10278
|
+
SELECT
|
|
10279
|
+
tool_name,
|
|
10280
|
+
SUM(CASE WHEN correct = 0 THEN 1 ELSE 0 END) as wrong_count,
|
|
10281
|
+
COUNT(*) as total_feedback
|
|
10282
|
+
FROM tool_selection_feedback
|
|
10283
|
+
WHERE timestamp >= ?
|
|
10284
|
+
AND source = 'explicit'
|
|
10285
|
+
AND correct IS NOT NULL
|
|
10286
|
+
GROUP BY tool_name
|
|
10287
|
+
HAVING wrong_count > 0
|
|
10288
|
+
ORDER BY wrong_count DESC
|
|
10289
|
+
LIMIT 10
|
|
10290
|
+
`).all(cutoff);
|
|
10291
|
+
return {
|
|
10292
|
+
total_feedback: totals.total_feedback,
|
|
10293
|
+
confirmed_correct: totals.confirmed_correct,
|
|
10294
|
+
confirmed_wrong: totals.confirmed_wrong,
|
|
10295
|
+
accuracy_rate: totals.total_feedback > 0 ? Math.round(totals.confirmed_correct / totals.total_feedback * 1e3) / 1e3 : null,
|
|
10296
|
+
top_reported_wrong_tools: wrongTools.map((r) => ({
|
|
10297
|
+
tool_name: r.tool_name,
|
|
10298
|
+
wrong_count: r.wrong_count,
|
|
10299
|
+
total_feedback: r.total_feedback,
|
|
10300
|
+
wrong_rate: Math.round(r.wrong_count / r.total_feedback * 1e3) / 1e3
|
|
10301
|
+
}))
|
|
10302
|
+
};
|
|
10303
|
+
}
|
|
10304
|
+
|
|
10305
|
+
// src/index.ts
|
|
9528
10306
|
import { openStateDb, scanVaultEntities as scanVaultEntities4, getAllEntitiesFromDb as getAllEntitiesFromDb6, loadContentHashes, saveContentHashBatch, renameContentHash, checkDbIntegrity as checkDbIntegrity2, safeBackupAsync as safeBackupAsync2, preserveCorruptedDb, deleteStateDbFiles, attemptSalvage } from "@velvetmonkey/vault-core";
|
|
9529
10307
|
|
|
9530
10308
|
// src/core/write/memory.ts
|
|
@@ -10140,9 +10918,9 @@ function purgeOldBenchmarks(stateDb2, retentionDays = 90) {
|
|
|
10140
10918
|
|
|
10141
10919
|
// src/core/shared/toolTracking.ts
|
|
10142
10920
|
function recordToolInvocation(stateDb2, event) {
|
|
10143
|
-
stateDb2.db.prepare(
|
|
10144
|
-
`INSERT INTO tool_invocations (timestamp, tool_name, session_id, note_paths, duration_ms, success, response_tokens, baseline_tokens)
|
|
10145
|
-
VALUES (?, ?, ?, ?, ?, ?, ?, ?)`
|
|
10921
|
+
const result = stateDb2.db.prepare(
|
|
10922
|
+
`INSERT INTO tool_invocations (timestamp, tool_name, session_id, note_paths, duration_ms, success, response_tokens, baseline_tokens, query_context)
|
|
10923
|
+
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)`
|
|
10146
10924
|
).run(
|
|
10147
10925
|
Date.now(),
|
|
10148
10926
|
event.tool_name,
|
|
@@ -10151,8 +10929,10 @@ function recordToolInvocation(stateDb2, event) {
|
|
|
10151
10929
|
event.duration_ms ?? null,
|
|
10152
10930
|
event.success !== false ? 1 : 0,
|
|
10153
10931
|
event.response_tokens ?? null,
|
|
10154
|
-
event.baseline_tokens ?? null
|
|
10932
|
+
event.baseline_tokens ?? null,
|
|
10933
|
+
event.query_context ?? null
|
|
10155
10934
|
);
|
|
10935
|
+
return Number(result.lastInsertRowid);
|
|
10156
10936
|
}
|
|
10157
10937
|
function rowToInvocation(row) {
|
|
10158
10938
|
return {
|
|
@@ -10164,7 +10944,8 @@ function rowToInvocation(row) {
|
|
|
10164
10944
|
duration_ms: row.duration_ms,
|
|
10165
10945
|
success: row.success === 1,
|
|
10166
10946
|
response_tokens: row.response_tokens,
|
|
10167
|
-
baseline_tokens: row.baseline_tokens
|
|
10947
|
+
baseline_tokens: row.baseline_tokens,
|
|
10948
|
+
query_context: row.query_context
|
|
10168
10949
|
};
|
|
10169
10950
|
}
|
|
10170
10951
|
function getToolUsageSummary(stateDb2, daysBack = 30) {
|
|
@@ -10608,8 +11389,8 @@ var ALL_CATEGORIES = [
|
|
|
10608
11389
|
];
|
|
10609
11390
|
var PRESETS = {
|
|
10610
11391
|
// Presets
|
|
10611
|
-
default: ["search", "read", "write", "tasks", "memory"],
|
|
10612
11392
|
full: [...ALL_CATEGORIES],
|
|
11393
|
+
agent: ["search", "read", "write", "tasks", "memory"],
|
|
10613
11394
|
// Composable bundles (one per category)
|
|
10614
11395
|
graph: ["graph"],
|
|
10615
11396
|
schema: ["schema"],
|
|
@@ -10621,15 +11402,15 @@ var PRESETS = {
|
|
|
10621
11402
|
temporal: ["temporal"],
|
|
10622
11403
|
diagnostics: ["diagnostics"]
|
|
10623
11404
|
};
|
|
10624
|
-
var DEFAULT_PRESET = "
|
|
11405
|
+
var DEFAULT_PRESET = "full";
|
|
10625
11406
|
var DEPRECATED_ALIASES = {
|
|
10626
|
-
|
|
10627
|
-
//
|
|
10628
|
-
minimal: "
|
|
10629
|
-
writer: "
|
|
10630
|
-
// writer was
|
|
10631
|
-
researcher: "
|
|
10632
|
-
// use
|
|
11407
|
+
default: "full",
|
|
11408
|
+
// default is now an alias for full
|
|
11409
|
+
minimal: "agent",
|
|
11410
|
+
writer: "agent",
|
|
11411
|
+
// writer was agent+tasks, agent now includes tasks
|
|
11412
|
+
researcher: "agent",
|
|
11413
|
+
// use agent,graph for graph exploration
|
|
10633
11414
|
backlinks: "graph",
|
|
10634
11415
|
// get_backlinks moved to graph
|
|
10635
11416
|
structure: "read",
|
|
@@ -10681,6 +11462,42 @@ function parseEnabledCategories(envValue) {
|
|
|
10681
11462
|
}
|
|
10682
11463
|
return categories;
|
|
10683
11464
|
}
|
|
11465
|
+
function resolveToolConfig(envValue) {
|
|
11466
|
+
const raw = (envValue ?? process.env.FLYWHEEL_TOOLS ?? process.env.FLYWHEEL_PRESET)?.trim();
|
|
11467
|
+
if (!raw) {
|
|
11468
|
+
return {
|
|
11469
|
+
categories: new Set(PRESETS[DEFAULT_PRESET]),
|
|
11470
|
+
preset: DEFAULT_PRESET,
|
|
11471
|
+
isFullToolset: true
|
|
11472
|
+
};
|
|
11473
|
+
}
|
|
11474
|
+
const lowerValue = raw.toLowerCase();
|
|
11475
|
+
if (PRESETS[lowerValue]) {
|
|
11476
|
+
const cats = new Set(PRESETS[lowerValue]);
|
|
11477
|
+
return {
|
|
11478
|
+
categories: cats,
|
|
11479
|
+
preset: lowerValue,
|
|
11480
|
+
isFullToolset: cats.size === ALL_CATEGORIES.length && ALL_CATEGORIES.every((c) => cats.has(c))
|
|
11481
|
+
};
|
|
11482
|
+
}
|
|
11483
|
+
if (DEPRECATED_ALIASES[lowerValue]) {
|
|
11484
|
+
const resolved = DEPRECATED_ALIASES[lowerValue];
|
|
11485
|
+
if (PRESETS[resolved]) {
|
|
11486
|
+
const cats = new Set(PRESETS[resolved]);
|
|
11487
|
+
return {
|
|
11488
|
+
categories: cats,
|
|
11489
|
+
preset: resolved,
|
|
11490
|
+
isFullToolset: cats.size === ALL_CATEGORIES.length && ALL_CATEGORIES.every((c) => cats.has(c))
|
|
11491
|
+
};
|
|
11492
|
+
}
|
|
11493
|
+
}
|
|
11494
|
+
const categories = parseEnabledCategories(raw);
|
|
11495
|
+
return {
|
|
11496
|
+
categories,
|
|
11497
|
+
preset: null,
|
|
11498
|
+
isFullToolset: categories.size === ALL_CATEGORIES.length && ALL_CATEGORIES.every((c) => categories.has(c))
|
|
11499
|
+
};
|
|
11500
|
+
}
|
|
10684
11501
|
var TOOL_CATEGORY = {
|
|
10685
11502
|
// search (3 tools)
|
|
10686
11503
|
search: "search",
|
|
@@ -10748,7 +11565,7 @@ var TOOL_CATEGORY = {
|
|
|
10748
11565
|
predict_stale_notes: "temporal",
|
|
10749
11566
|
track_concept_evolution: "temporal",
|
|
10750
11567
|
temporal_summary: "temporal",
|
|
10751
|
-
// diagnostics (
|
|
11568
|
+
// diagnostics (22 tools) -- vault health, stats, config, activity, merges, doctor, trust, benchmark, history, learning report, calibration export, pipeline status, tool selection feedback
|
|
10752
11569
|
health_check: "diagnostics",
|
|
10753
11570
|
pipeline_status: "diagnostics",
|
|
10754
11571
|
get_vault_stats: "diagnostics",
|
|
@@ -10769,22 +11586,128 @@ var TOOL_CATEGORY = {
|
|
|
10769
11586
|
vault_session_history: "diagnostics",
|
|
10770
11587
|
vault_entity_history: "diagnostics",
|
|
10771
11588
|
flywheel_learning_report: "diagnostics",
|
|
10772
|
-
flywheel_calibration_export: "diagnostics"
|
|
11589
|
+
flywheel_calibration_export: "diagnostics",
|
|
11590
|
+
tool_selection_feedback: "diagnostics"
|
|
11591
|
+
};
|
|
11592
|
+
var TOOL_TIER = {
|
|
11593
|
+
// Tier 1 — always visible (= agent preset, 18 tools)
|
|
11594
|
+
search: 1,
|
|
11595
|
+
init_semantic: 1,
|
|
11596
|
+
find_similar: 1,
|
|
11597
|
+
get_note_structure: 1,
|
|
11598
|
+
get_section_content: 1,
|
|
11599
|
+
find_sections: 1,
|
|
11600
|
+
vault_add_to_section: 1,
|
|
11601
|
+
vault_remove_from_section: 1,
|
|
11602
|
+
vault_replace_in_section: 1,
|
|
11603
|
+
vault_update_frontmatter: 1,
|
|
11604
|
+
vault_create_note: 1,
|
|
11605
|
+
vault_undo_last_mutation: 1,
|
|
11606
|
+
policy: 1,
|
|
11607
|
+
tasks: 1,
|
|
11608
|
+
vault_toggle_task: 1,
|
|
11609
|
+
vault_add_task: 1,
|
|
11610
|
+
memory: 1,
|
|
11611
|
+
brief: 1,
|
|
11612
|
+
// Tier 2 — context-triggered categories + core diagnostics (33 tools)
|
|
11613
|
+
graph_analysis: 2,
|
|
11614
|
+
semantic_analysis: 2,
|
|
11615
|
+
get_backlinks: 2,
|
|
11616
|
+
get_forward_links: 2,
|
|
11617
|
+
get_connection_strength: 2,
|
|
11618
|
+
list_entities: 2,
|
|
11619
|
+
get_link_path: 2,
|
|
11620
|
+
get_common_neighbors: 2,
|
|
11621
|
+
get_weighted_links: 2,
|
|
11622
|
+
get_strong_connections: 2,
|
|
11623
|
+
export_graph: 2,
|
|
11624
|
+
suggest_wikilinks: 2,
|
|
11625
|
+
validate_links: 2,
|
|
11626
|
+
wikilink_feedback: 2,
|
|
11627
|
+
discover_stub_candidates: 2,
|
|
11628
|
+
discover_cooccurrence_gaps: 2,
|
|
11629
|
+
suggest_entity_aliases: 2,
|
|
11630
|
+
unlinked_mentions_report: 2,
|
|
11631
|
+
vault_record_correction: 2,
|
|
11632
|
+
vault_list_corrections: 2,
|
|
11633
|
+
vault_resolve_correction: 2,
|
|
11634
|
+
absorb_as_alias: 2,
|
|
11635
|
+
get_context_around_date: 2,
|
|
11636
|
+
predict_stale_notes: 2,
|
|
11637
|
+
track_concept_evolution: 2,
|
|
11638
|
+
temporal_summary: 2,
|
|
11639
|
+
health_check: 2,
|
|
11640
|
+
pipeline_status: 2,
|
|
11641
|
+
get_vault_stats: 2,
|
|
11642
|
+
refresh_index: 2,
|
|
11643
|
+
flywheel_config: 2,
|
|
11644
|
+
server_log: 2,
|
|
11645
|
+
flywheel_doctor: 2,
|
|
11646
|
+
// Tier 3 — explicit or advanced operations (25 tools)
|
|
11647
|
+
vault_schema: 3,
|
|
11648
|
+
schema_conventions: 3,
|
|
11649
|
+
schema_validate: 3,
|
|
11650
|
+
note_intelligence: 3,
|
|
11651
|
+
rename_field: 3,
|
|
11652
|
+
migrate_field_values: 3,
|
|
11653
|
+
rename_tag: 3,
|
|
11654
|
+
vault_delete_note: 3,
|
|
11655
|
+
vault_move_note: 3,
|
|
11656
|
+
vault_rename_note: 3,
|
|
11657
|
+
merge_entities: 3,
|
|
11658
|
+
get_folder_structure: 3,
|
|
11659
|
+
get_all_entities: 3,
|
|
11660
|
+
get_unlinked_mentions: 3,
|
|
11661
|
+
vault_growth: 3,
|
|
11662
|
+
vault_activity: 3,
|
|
11663
|
+
suggest_entity_merges: 3,
|
|
11664
|
+
dismiss_merge_suggestion: 3,
|
|
11665
|
+
vault_init: 3,
|
|
11666
|
+
flywheel_trust_report: 3,
|
|
11667
|
+
flywheel_benchmark: 3,
|
|
11668
|
+
vault_session_history: 3,
|
|
11669
|
+
vault_entity_history: 3,
|
|
11670
|
+
flywheel_learning_report: 3,
|
|
11671
|
+
flywheel_calibration_export: 3,
|
|
11672
|
+
tool_selection_feedback: 3
|
|
10773
11673
|
};
|
|
10774
|
-
function
|
|
11674
|
+
function assertToolTierCoverage() {
|
|
11675
|
+
const categoryKeys = Object.keys(TOOL_CATEGORY).sort();
|
|
11676
|
+
const tierKeys = Object.keys(TOOL_TIER).sort();
|
|
11677
|
+
const missingTier = categoryKeys.filter((key) => !(key in TOOL_TIER));
|
|
11678
|
+
const missingCategory = tierKeys.filter((key) => !(key in TOOL_CATEGORY));
|
|
11679
|
+
if (missingTier.length > 0 || missingCategory.length > 0 || categoryKeys.length !== tierKeys.length) {
|
|
11680
|
+
throw new Error(
|
|
11681
|
+
`TOOL_TIER must cover exactly the same tools as TOOL_CATEGORY. missing tier entries: ${missingTier.join(", ") || "none"}; missing category entries: ${missingCategory.join(", ") || "none"}`
|
|
11682
|
+
);
|
|
11683
|
+
}
|
|
11684
|
+
}
|
|
11685
|
+
assertToolTierCoverage();
|
|
11686
|
+
function generateInstructions(categories, registry, activeTierCategories) {
|
|
10775
11687
|
const parts = [];
|
|
11688
|
+
const tieringActive = activeTierCategories !== void 0;
|
|
11689
|
+
const isCategoryVisible = (category) => {
|
|
11690
|
+
if (!categories.has(category)) return false;
|
|
11691
|
+
if (!tieringActive) return true;
|
|
11692
|
+
if (PRESETS.agent.includes(category)) return true;
|
|
11693
|
+
return activeTierCategories.has(category);
|
|
11694
|
+
};
|
|
10776
11695
|
parts.push(`Flywheel provides tools to search, read, and write an Obsidian vault's knowledge graph.
|
|
10777
11696
|
|
|
10778
11697
|
Tool selection:
|
|
10779
|
-
1. "search" is the primary tool. One call searches notes,
|
|
10780
|
-
Each result carries: type (note/entity/memory),
|
|
10781
|
-
backlinks (ranked by edge weight \xD7 recency),
|
|
10782
|
-
section provenance, extracted dates, entity
|
|
10783
|
-
content snippet or preview, entity category,
|
|
11698
|
+
1. "search" is the primary tool for content lookup. One call searches notes,
|
|
11699
|
+
entities, and memories. Each result carries: type (note/entity/memory),
|
|
11700
|
+
frontmatter, tags, aliases, backlinks (ranked by edge weight \xD7 recency),
|
|
11701
|
+
outlinks (existence-checked), section provenance, extracted dates, entity
|
|
11702
|
+
bridges, confidence scores, content snippet or preview, entity category,
|
|
11703
|
+
hub score, and timestamps.
|
|
10784
11704
|
This is a decision surface \u2014 usually enough to answer without reading any files.
|
|
10785
|
-
2.
|
|
11705
|
+
2. For structural, temporal, wikilink, or diagnostic questions, use the
|
|
11706
|
+
specialized tools in those categories instead of search with filters.
|
|
11707
|
+
See the category sections below.
|
|
11708
|
+
3. Escalate to "get_note_structure" only when you need the full markdown content
|
|
10786
11709
|
or word count. Use "get_section_content" to read one section by heading name.
|
|
10787
|
-
|
|
11710
|
+
4. Start with a broad search: just query text, no filters. Only add folder, tag,
|
|
10788
11711
|
or frontmatter filters to narrow a second search if needed.`);
|
|
10789
11712
|
if (!hasEmbeddingsIndex()) {
|
|
10790
11713
|
parts.push(`
|
|
@@ -10807,7 +11730,7 @@ This server manages multiple vaults. Every tool has an optional "vault" paramete
|
|
|
10807
11730
|
- \`description:\` \u2014 one-line summary shown in search results and used for entity ranking. Without it, search quality is degraded.
|
|
10808
11731
|
- Tags \u2014 used for filtering, suggestion scoring, and schema analysis.
|
|
10809
11732
|
Good frontmatter is the highest-leverage action for improving suggestions, search, and link quality.`);
|
|
10810
|
-
if (
|
|
11733
|
+
if (isCategoryVisible("read")) {
|
|
10811
11734
|
parts.push(`
|
|
10812
11735
|
## Read
|
|
10813
11736
|
|
|
@@ -10815,7 +11738,7 @@ Escalation: "search" (enriched metadata + content preview) \u2192 "get_note_stru
|
|
|
10815
11738
|
(full content + word count) \u2192 "get_section_content" (single section).
|
|
10816
11739
|
"find_sections" finds headings across the vault by pattern.`);
|
|
10817
11740
|
}
|
|
10818
|
-
if (
|
|
11741
|
+
if (isCategoryVisible("write")) {
|
|
10819
11742
|
parts.push(`
|
|
10820
11743
|
## Write
|
|
10821
11744
|
|
|
@@ -10853,7 +11776,7 @@ Example: ask "create a policy that generates a weekly review note, pulls open ta
|
|
|
10853
11776
|
project frontmatter" \u2014 Claude authors the YAML, saves it to .claude/policies/, and runs it whenever
|
|
10854
11777
|
you say "run the weekly review for this week".`);
|
|
10855
11778
|
}
|
|
10856
|
-
if (
|
|
11779
|
+
if (isCategoryVisible("memory")) {
|
|
10857
11780
|
parts.push(`
|
|
10858
11781
|
## Memory
|
|
10859
11782
|
|
|
@@ -10862,7 +11785,7 @@ conversation start. "search" finds everything \u2014 notes, entities, and memori
|
|
|
10862
11785
|
with action "store" persists observations, facts, or preferences across sessions (e.g. key decisions,
|
|
10863
11786
|
user preferences, project status).`);
|
|
10864
11787
|
}
|
|
10865
|
-
if (
|
|
11788
|
+
if (isCategoryVisible("graph")) {
|
|
10866
11789
|
parts.push(`
|
|
10867
11790
|
## Graph
|
|
10868
11791
|
|
|
@@ -10872,30 +11795,101 @@ Use "graph_analysis" for structural queries (hubs, orphans, dead ends).
|
|
|
10872
11795
|
Use "get_connection_strength" to measure link strength between two entities.
|
|
10873
11796
|
Use "get_link_path" to trace the shortest path between any two entities or notes.
|
|
10874
11797
|
Use "get_strong_connections" to find the strongest or most-connected relationships for an entity.`);
|
|
11798
|
+
} else if (tieringActive && categories.has("graph")) {
|
|
11799
|
+
parts.push(`
|
|
11800
|
+
**More tools available:** Ask about graph connections, backlinks, hubs, clusters, or paths to unlock graph analysis tools.`);
|
|
11801
|
+
}
|
|
11802
|
+
if (isCategoryVisible("note-ops")) {
|
|
11803
|
+
parts.push(`
|
|
11804
|
+
## Note Operations
|
|
11805
|
+
|
|
11806
|
+
Use "vault_delete_note" to permanently remove a note from the vault.
|
|
11807
|
+
Use "vault_move_note" to relocate a note to a different folder (updates all backlinks automatically).
|
|
11808
|
+
Use "vault_rename_note" to change a note's title in place (updates all backlinks automatically).
|
|
11809
|
+
Use "merge_entities" to consolidate two entity notes into one \u2014 adds aliases, merges content, rewires wikilinks, and deletes the source.`);
|
|
11810
|
+
}
|
|
11811
|
+
if (isCategoryVisible("tasks")) {
|
|
11812
|
+
parts.push(`
|
|
11813
|
+
## Tasks
|
|
11814
|
+
|
|
11815
|
+
Use "tasks" to query tasks across the vault (filter by status, due date, path). Use "vault_add_task" to create tasks and "vault_toggle_task" to complete them.`);
|
|
11816
|
+
}
|
|
11817
|
+
if (isCategoryVisible("schema")) {
|
|
11818
|
+
parts.push(`
|
|
11819
|
+
## Schema
|
|
11820
|
+
|
|
11821
|
+
Use "vault_schema" before bulk operations to understand field types, values, and note type distribution.
|
|
11822
|
+
Use "schema_conventions" to infer frontmatter conventions from folder usage patterns, find notes with incomplete metadata, or suggest field values.
|
|
11823
|
+
Use "schema_validate" to validate frontmatter against explicit rules or find notes missing expected fields by folder.
|
|
11824
|
+
Use "note_intelligence" for per-note analysis (completeness, quality, suggestions).`);
|
|
11825
|
+
} else if (tieringActive && categories.has("schema")) {
|
|
11826
|
+
parts.push(`
|
|
11827
|
+
**Advanced tools:** Ask to unlock schema tools for conventions, validation, migrations, and bulk metadata analysis.`);
|
|
11828
|
+
}
|
|
11829
|
+
if (isCategoryVisible("wikilinks")) {
|
|
11830
|
+
parts.push(`
|
|
11831
|
+
## Wikilinks
|
|
11832
|
+
|
|
11833
|
+
Link quality and discovery \u2014 not for finding content (use search for that).
|
|
11834
|
+
|
|
11835
|
+
- "What should be linked?" \u2192 unlinked_mentions_report (vault-wide linking opportunities)
|
|
11836
|
+
- "Suggest links for this note" \u2192 suggest_wikilinks (per-note entity mention analysis)
|
|
11837
|
+
- "Are any links broken?" \u2192 validate_links (dead links + fix suggestions)
|
|
11838
|
+
- "What topics need their own notes?" \u2192 discover_stub_candidates (frequently-linked but non-existent)
|
|
11839
|
+
- "What entities appear together?" \u2192 discover_cooccurrence_gaps (co-occurring but unlinked pairs)
|
|
11840
|
+
- "Was that link correct?" \u2192 wikilink_feedback (accept/reject, improves future suggestions)
|
|
11841
|
+
- "What aliases am I missing?" \u2192 suggest_entity_aliases (acronyms, short forms, alternate names)`);
|
|
11842
|
+
} else if (tieringActive && categories.has("wikilinks")) {
|
|
11843
|
+
parts.push(`
|
|
11844
|
+
**More tools available:** Ask about wikilinks, suggestions, stubs, or unlinked mentions to unlock wikilink tools.`);
|
|
10875
11845
|
}
|
|
10876
|
-
if (
|
|
11846
|
+
if (isCategoryVisible("corrections")) {
|
|
10877
11847
|
parts.push(`
|
|
10878
|
-
##
|
|
11848
|
+
## Corrections
|
|
10879
11849
|
|
|
10880
|
-
|
|
10881
|
-
|
|
10882
|
-
|
|
10883
|
-
|
|
11850
|
+
When the user says something is wrong \u2014 a bad link, wrong entity, wrong category:
|
|
11851
|
+
|
|
11852
|
+
"vault_record_correction" persists a correction for future sessions.
|
|
11853
|
+
"vault_list_corrections" shows pending/applied/dismissed corrections.
|
|
11854
|
+
"vault_resolve_correction" marks a correction as applied or dismissed.
|
|
11855
|
+
Use "absorb_as_alias" when two names should resolve to the same entity without merging note bodies.`);
|
|
11856
|
+
} else if (tieringActive && categories.has("corrections")) {
|
|
11857
|
+
parts.push(`
|
|
11858
|
+
**More tools available:** Ask about errors, wrong links, or fixes to unlock correction tools.`);
|
|
10884
11859
|
}
|
|
10885
|
-
if (
|
|
11860
|
+
if (isCategoryVisible("temporal")) {
|
|
10886
11861
|
parts.push(`
|
|
10887
|
-
##
|
|
11862
|
+
## Temporal
|
|
10888
11863
|
|
|
10889
|
-
|
|
11864
|
+
Search date filters (modified_after/modified_before) find content within a date range.
|
|
11865
|
+
Temporal tools analyze *patterns and changes* over time \u2014 use them for "what changed" not "what exists":
|
|
11866
|
+
|
|
11867
|
+
- "What happened last week/month?" \u2192 temporal_summary (activity + entity momentum + maintenance alerts)
|
|
11868
|
+
- "How has X changed/evolved?" \u2192 track_concept_evolution (entity timeline: links, feedback, category shifts)
|
|
11869
|
+
- "What was I working on around March 15?" \u2192 get_context_around_date (notes, entities, activity in a window)
|
|
11870
|
+
- "What notes need attention?" \u2192 predict_stale_notes (importance \xD7 staleness \u2192 archive/update/review)
|
|
11871
|
+
|
|
11872
|
+
temporal_summary composes the other three \u2014 use it for weekly/monthly reviews.`);
|
|
11873
|
+
} else if (tieringActive && categories.has("temporal")) {
|
|
11874
|
+
parts.push(`
|
|
11875
|
+
**More tools available:** Ask about time, history, evolution, or stale notes to unlock temporal tools.`);
|
|
10890
11876
|
}
|
|
10891
|
-
if (
|
|
11877
|
+
if (isCategoryVisible("diagnostics")) {
|
|
10892
11878
|
parts.push(`
|
|
10893
|
-
##
|
|
11879
|
+
## Diagnostics
|
|
10894
11880
|
|
|
10895
|
-
|
|
10896
|
-
|
|
10897
|
-
|
|
10898
|
-
|
|
11881
|
+
- Triage: "health_check" (quick status) \u2192 "flywheel_doctor" (active problem detection) \u2192 "server_log" (event timeline)
|
|
11882
|
+
- Stats: "get_vault_stats" (counts), "vault_growth" (trends over time), "get_folder_structure" (organization)
|
|
11883
|
+
- Activity: "vault_activity" (tool usage), "vault_session_history" (session detail), "vault_entity_history" (entity timeline)
|
|
11884
|
+
- System: "flywheel_trust_report" (config + boundaries), "flywheel_benchmark" (performance), "flywheel_learning_report" (auto-linking effectiveness)
|
|
11885
|
+
- Entities: "suggest_entity_merges" (duplicates), "get_all_entities" (full list), "get_unlinked_mentions" (linking opportunities)
|
|
11886
|
+
- Maintenance: "refresh_index" (rebuild), "flywheel_config" (settings), "vault_init" (first-time setup)
|
|
11887
|
+
|
|
11888
|
+
Use "flywheel_config" to inspect runtime configuration and set "tool_tier_override" to "auto", "full", or "minimal" for this vault.`);
|
|
11889
|
+
} else if (tieringActive && categories.has("diagnostics")) {
|
|
11890
|
+
parts.push(`
|
|
11891
|
+
**More tools available:** Ask about vault health, indexing, status, or configuration to unlock diagnostic tools.
|
|
11892
|
+
**Advanced tools:** Ask to unlock note operations or deep diagnostics for note mutations, benchmarks, history, graph exports, and learning reports.`);
|
|
10899
11893
|
}
|
|
10900
11894
|
return parts.join("\n");
|
|
10901
11895
|
}
|
|
@@ -10905,7 +11899,8 @@ import * as path37 from "path";
|
|
|
10905
11899
|
import { dirname as dirname5, join as join19 } from "path";
|
|
10906
11900
|
import { statSync as statSync6, readFileSync as readFileSync5 } from "fs";
|
|
10907
11901
|
import { fileURLToPath } from "url";
|
|
10908
|
-
import { z as
|
|
11902
|
+
import { z as z40 } from "zod";
|
|
11903
|
+
import { CallToolRequestSchema, ErrorCode, McpError } from "@modelcontextprotocol/sdk/types.js";
|
|
10909
11904
|
import { getSessionId } from "@velvetmonkey/vault-core";
|
|
10910
11905
|
|
|
10911
11906
|
// src/tools/read/query.ts
|
|
@@ -11637,6 +12632,33 @@ async function findSections(index, headingPattern, vaultPath2, folder) {
|
|
|
11637
12632
|
}
|
|
11638
12633
|
|
|
11639
12634
|
// src/tools/read/query.ts
|
|
12635
|
+
function shouldRunMultiHop(query, results, index) {
|
|
12636
|
+
if (results.length < 3) return true;
|
|
12637
|
+
if (results.length >= 8) return false;
|
|
12638
|
+
const queryLower = query.toLowerCase();
|
|
12639
|
+
const topResults = results.slice(0, 5);
|
|
12640
|
+
let bridgeSignals = 0;
|
|
12641
|
+
for (const r of topResults) {
|
|
12642
|
+
const outlinks = r.outlink_names;
|
|
12643
|
+
if (!outlinks) continue;
|
|
12644
|
+
for (const name of outlinks) {
|
|
12645
|
+
if (name.length >= 3 && !queryLower.includes(name.toLowerCase())) {
|
|
12646
|
+
bridgeSignals++;
|
|
12647
|
+
}
|
|
12648
|
+
}
|
|
12649
|
+
}
|
|
12650
|
+
if (bridgeSignals >= 3) return true;
|
|
12651
|
+
const folders = /* @__PURE__ */ new Set();
|
|
12652
|
+
for (const r of topResults) {
|
|
12653
|
+
const p = r.path;
|
|
12654
|
+
if (p) {
|
|
12655
|
+
const folder = p.split("/").slice(0, -1).join("/");
|
|
12656
|
+
folders.add(folder);
|
|
12657
|
+
}
|
|
12658
|
+
}
|
|
12659
|
+
if (folders.size === 1 && topResults.length >= 3) return true;
|
|
12660
|
+
return false;
|
|
12661
|
+
}
|
|
11640
12662
|
function applyGraphReranking(results, stateDb2) {
|
|
11641
12663
|
if (!stateDb2) return;
|
|
11642
12664
|
const cooccurrenceIndex2 = getCooccurrenceIndex();
|
|
@@ -11684,7 +12706,7 @@ function applySandwichOrdering(results) {
|
|
|
11684
12706
|
results[i] = out[i];
|
|
11685
12707
|
}
|
|
11686
12708
|
}
|
|
11687
|
-
function applyEntityBridging(results, stateDb2, maxBridgesPerResult =
|
|
12709
|
+
function applyEntityBridging(results, stateDb2, maxBridgesPerResult = 5) {
|
|
11688
12710
|
if (!stateDb2 || results.length < 2) return;
|
|
11689
12711
|
const linkMap = /* @__PURE__ */ new Map();
|
|
11690
12712
|
try {
|
|
@@ -11939,7 +12961,7 @@ function registerQueryTools(server2, getIndex, getVaultPath, getStateDb3) {
|
|
|
11939
12961
|
include_children: z.boolean().default(false).describe('When true, tag filters also match child tags (e.g., has_tag: "project" also matches "project/active")'),
|
|
11940
12962
|
folder: z.string().optional().describe("Filter results to a folder. Prefer searching without folder first, then add folder to narrow."),
|
|
11941
12963
|
title_contains: z.string().optional().describe("Filter to notes whose title contains this text (case-insensitive)"),
|
|
11942
|
-
// Date filters (
|
|
12964
|
+
// Date filters (find notes by modification date — for pattern analysis use temporal tools)
|
|
11943
12965
|
modified_after: z.string().optional().describe("Only notes modified after this date (YYYY-MM-DD)"),
|
|
11944
12966
|
modified_before: z.string().optional().describe("Only notes modified before this date (YYYY-MM-DD)"),
|
|
11945
12967
|
// Sorting
|
|
@@ -12136,7 +13158,7 @@ function registerQueryTools(server2, getIndex, getVaultPath, getStateDb3) {
|
|
|
12136
13158
|
in_semantic: item.in_semantic,
|
|
12137
13159
|
in_entity: item.in_entity
|
|
12138
13160
|
}));
|
|
12139
|
-
if (results2
|
|
13161
|
+
if (shouldRunMultiHop(query, results2, index)) {
|
|
12140
13162
|
const hopResults = multiHopBackfill(results2, index, stateDb2, { maxBackfill: limit });
|
|
12141
13163
|
const expansionTerms = extractExpansionTerms(results2, query, index);
|
|
12142
13164
|
const expansionResults = expandQuery(expansionTerms, [...results2, ...hopResults], index, stateDb2);
|
|
@@ -12184,7 +13206,7 @@ function registerQueryTools(server2, getIndex, getVaultPath, getStateDb3) {
|
|
|
12184
13206
|
...enrichResultCompact({ path: item.path, title: item.title, snippet: item.snippet }, index, stateDb2),
|
|
12185
13207
|
..."in_fts5" in item ? { in_fts5: true } : { in_entity: true }
|
|
12186
13208
|
}));
|
|
12187
|
-
if (results2
|
|
13209
|
+
if (shouldRunMultiHop(query, results2, index)) {
|
|
12188
13210
|
const hopResults = multiHopBackfill(results2, index, stateDb2, { maxBackfill: limit });
|
|
12189
13211
|
const expansionTerms = extractExpansionTerms(results2, query, index);
|
|
12190
13212
|
const expansionResults = expandQuery(expansionTerms, [...results2, ...hopResults], index, stateDb2);
|
|
@@ -12211,7 +13233,7 @@ function registerQueryTools(server2, getIndex, getVaultPath, getStateDb3) {
|
|
|
12211
13233
|
const stateDbFts = getStateDb3();
|
|
12212
13234
|
const fts5Filtered = applyFolderFilter(fts5Results);
|
|
12213
13235
|
const results = fts5Filtered.map((r) => ({ ...enrichResultCompact({ path: r.path, title: r.title, snippet: r.snippet }, index, stateDbFts), in_fts5: true }));
|
|
12214
|
-
if (results
|
|
13236
|
+
if (shouldRunMultiHop(query, results, index)) {
|
|
12215
13237
|
const hopResults = multiHopBackfill(results, index, stateDbFts, { maxBackfill: limit });
|
|
12216
13238
|
const expansionTerms = extractExpansionTerms(results, query, index);
|
|
12217
13239
|
const expansionResults = expandQuery(expansionTerms, [...results, ...hopResults], index, stateDbFts);
|
|
@@ -12991,6 +14013,7 @@ function buildGraphData(index, stateDb2, options) {
|
|
|
12991
14013
|
).all(options.min_edge_weight);
|
|
12992
14014
|
for (const row of rows) {
|
|
12993
14015
|
const sourceId = xmlId("note", row.note_path);
|
|
14016
|
+
if (!noteIds.has(sourceId)) continue;
|
|
12994
14017
|
const targetLower = row.target.toLowerCase();
|
|
12995
14018
|
let targetId;
|
|
12996
14019
|
if (entityIds.has(xmlId("entity", row.target))) {
|
|
@@ -13187,8 +14210,8 @@ function registerGraphExportTools(server2, getIndex, getVaultPath, getStateDb3)
|
|
|
13187
14210
|
import { z as z4 } from "zod";
|
|
13188
14211
|
init_wikilinks();
|
|
13189
14212
|
init_wikilinkFeedback();
|
|
13190
|
-
import { detectImplicitEntities as detectImplicitEntities3, COMMON_ENGLISH_WORDS } from "@velvetmonkey/vault-core";
|
|
13191
|
-
function findEntityMatches2(text, entities) {
|
|
14213
|
+
import { detectImplicitEntities as detectImplicitEntities3, COMMON_ENGLISH_WORDS as COMMON_ENGLISH_WORDS2, isCommonWordEntity } from "@velvetmonkey/vault-core";
|
|
14214
|
+
function findEntityMatches2(text, entities, commonWordKeys = /* @__PURE__ */ new Set()) {
|
|
13192
14215
|
const matches = [];
|
|
13193
14216
|
const sortedEntities = Array.from(entities.entries()).filter(([name]) => name.length >= 2).sort((a, b) => b[0].length - a[0].length);
|
|
13194
14217
|
const skipRegions = [];
|
|
@@ -13258,6 +14281,10 @@ function findEntityMatches2(text, entities) {
|
|
|
13258
14281
|
const isWordBoundaryAfter = /[\s\n\r.,;:!?()[\]{}'"<>-]/.test(charAfter);
|
|
13259
14282
|
if (isWordBoundaryBefore && isWordBoundaryAfter && !shouldSkip(pos, end)) {
|
|
13260
14283
|
const originalText = text.substring(pos, end);
|
|
14284
|
+
if (commonWordKeys.has(entityLower) && originalText === originalText.toLowerCase()) {
|
|
14285
|
+
searchStart = pos + 1;
|
|
14286
|
+
continue;
|
|
14287
|
+
}
|
|
13261
14288
|
matches.push({
|
|
13262
14289
|
entity: originalText,
|
|
13263
14290
|
start: pos,
|
|
@@ -13288,7 +14315,9 @@ function registerWikilinkTools(server2, getIndex, getVaultPath, getStateDb3 = ()
|
|
|
13288
14315
|
});
|
|
13289
14316
|
const ScoreBreakdownSchema = z4.object({
|
|
13290
14317
|
contentMatch: z4.coerce.number(),
|
|
14318
|
+
fuzzyMatch: z4.coerce.number(),
|
|
13291
14319
|
cooccurrenceBoost: z4.coerce.number(),
|
|
14320
|
+
rarityAdjustment: z4.coerce.number(),
|
|
13292
14321
|
typeBoost: z4.coerce.number(),
|
|
13293
14322
|
contextBoost: z4.coerce.number(),
|
|
13294
14323
|
recencyBoost: z4.coerce.number(),
|
|
@@ -13339,7 +14368,18 @@ function registerWikilinkTools(server2, getIndex, getVaultPath, getStateDb3 = ()
|
|
|
13339
14368
|
const limit = Math.min(requestedLimit ?? 50, MAX_LIMIT);
|
|
13340
14369
|
requireIndex();
|
|
13341
14370
|
const index = getIndex();
|
|
13342
|
-
const
|
|
14371
|
+
const commonWordKeys = /* @__PURE__ */ new Set();
|
|
14372
|
+
for (const note of index.notes.values()) {
|
|
14373
|
+
if (isCommonWordEntity(note.title)) {
|
|
14374
|
+
commonWordKeys.add(note.title.toLowerCase());
|
|
14375
|
+
}
|
|
14376
|
+
for (const alias of note.aliases) {
|
|
14377
|
+
if (isCommonWordEntity(alias)) {
|
|
14378
|
+
commonWordKeys.add(alias.toLowerCase());
|
|
14379
|
+
}
|
|
14380
|
+
}
|
|
14381
|
+
}
|
|
14382
|
+
const allMatches = findEntityMatches2(text, index.entities, commonWordKeys);
|
|
13343
14383
|
const matches = allMatches.slice(offset, offset + limit);
|
|
13344
14384
|
const linkedSet = new Set(allMatches.map((m) => m.entity.toLowerCase()));
|
|
13345
14385
|
const prospects = [];
|
|
@@ -13348,7 +14388,7 @@ function registerWikilinkTools(server2, getIndex, getVaultPath, getStateDb3 = ()
|
|
|
13348
14388
|
if (links.length < 2) continue;
|
|
13349
14389
|
if (index.entities.has(target.toLowerCase())) continue;
|
|
13350
14390
|
if (linkedSet.has(target.toLowerCase())) continue;
|
|
13351
|
-
if (
|
|
14391
|
+
if (COMMON_ENGLISH_WORDS2.has(target.toLowerCase())) continue;
|
|
13352
14392
|
if (target.length < 4) continue;
|
|
13353
14393
|
const targetLower = target.toLowerCase();
|
|
13354
14394
|
const textLower = text.toLowerCase();
|
|
@@ -13421,8 +14461,9 @@ function registerWikilinkTools(server2, getIndex, getVaultPath, getStateDb3 = ()
|
|
|
13421
14461
|
for (const suggestion of scored.detailed) {
|
|
13422
14462
|
const stat5 = statsMap.get(suggestion.entity.toLowerCase());
|
|
13423
14463
|
if (stat5) {
|
|
13424
|
-
const
|
|
13425
|
-
const
|
|
14464
|
+
const effectiveAlpha = isAiConfigEntity(suggestion.entity) ? AI_CONFIG_PRIOR_ALPHA : PRIOR_ALPHA;
|
|
14465
|
+
const posteriorMean = computePosteriorMean(stat5.weightedCorrect, stat5.weightedFp, effectiveAlpha);
|
|
14466
|
+
const totalObs = effectiveAlpha + stat5.weightedCorrect + PRIOR_BETA + stat5.weightedFp;
|
|
13426
14467
|
suggestion.suppressionContext = {
|
|
13427
14468
|
posteriorMean: Math.round(posteriorMean * 1e3) / 1e3,
|
|
13428
14469
|
totalObservations: Math.round(totalObs * 10) / 10,
|
|
@@ -13959,7 +15000,7 @@ init_serverLog();
|
|
|
13959
15000
|
init_wikilinkFeedback();
|
|
13960
15001
|
init_embeddings();
|
|
13961
15002
|
var STALE_THRESHOLD_SECONDS = 300;
|
|
13962
|
-
function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () => ({}), getStateDb3 = () => null, getWatcherStatus2 = () => null, getVersion = () => "unknown") {
|
|
15003
|
+
function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () => ({}), getStateDb3 = () => null, getWatcherStatus2 = () => null, getVersion = () => "unknown", getPipelineActivityState = () => null) {
|
|
13963
15004
|
const IndexProgressSchema = z5.object({
|
|
13964
15005
|
parsed: z5.coerce.number().describe("Number of files parsed so far"),
|
|
13965
15006
|
total: z5.coerce.number().describe("Total number of files to parse")
|
|
@@ -14061,11 +15102,11 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14061
15102
|
progress: z5.string().nullable(),
|
|
14062
15103
|
last_completed_ago_seconds: z5.number().nullable()
|
|
14063
15104
|
}).optional().describe("Live pipeline activity state"),
|
|
14064
|
-
dead_link_count: z5.coerce.number().describe("Total number of broken/dead wikilinks across the vault"),
|
|
15105
|
+
dead_link_count: z5.coerce.number().optional().describe("Total number of broken/dead wikilinks across the vault (full mode only)"),
|
|
14065
15106
|
top_dead_link_targets: z5.array(z5.object({
|
|
14066
15107
|
target: z5.string().describe("The dead link target"),
|
|
14067
15108
|
mention_count: z5.coerce.number().describe("How many notes reference this dead target")
|
|
14068
|
-
})).describe("Top 5 most-referenced dead link targets (highest-ROI candidates to create)"),
|
|
15109
|
+
})).optional().describe("Top 5 most-referenced dead link targets (highest-ROI candidates to create, full mode only)"),
|
|
14069
15110
|
sweep: z5.object({
|
|
14070
15111
|
last_sweep_at: z5.number().describe("When the last background sweep completed (ms epoch)"),
|
|
14071
15112
|
sweep_duration_ms: z5.number().describe("How long the last sweep took"),
|
|
@@ -14128,19 +15169,21 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14128
15169
|
let lastIndexActivityAt;
|
|
14129
15170
|
let lastFullRebuildAt;
|
|
14130
15171
|
let lastWatcherBatchAt;
|
|
15172
|
+
let lastBuild;
|
|
15173
|
+
let lastManual;
|
|
14131
15174
|
if (stateDb2) {
|
|
14132
15175
|
try {
|
|
14133
15176
|
const lastAny = getLastSuccessfulEvent(stateDb2);
|
|
14134
15177
|
if (lastAny) lastIndexActivityAt = lastAny.timestamp;
|
|
14135
|
-
|
|
14136
|
-
|
|
15178
|
+
lastBuild = getLastEventByTrigger(stateDb2, "startup_build") ?? void 0;
|
|
15179
|
+
lastManual = getLastEventByTrigger(stateDb2, "manual_refresh") ?? void 0;
|
|
14137
15180
|
lastFullRebuildAt = Math.max(lastBuild?.timestamp ?? 0, lastManual?.timestamp ?? 0) || void 0;
|
|
14138
15181
|
const lastWatcher = getLastEventByTrigger(stateDb2, "watcher");
|
|
14139
15182
|
if (lastWatcher) lastWatcherBatchAt = lastWatcher.timestamp;
|
|
14140
15183
|
} catch {
|
|
14141
15184
|
}
|
|
14142
15185
|
}
|
|
14143
|
-
const freshnessTimestamp =
|
|
15186
|
+
const freshnessTimestamp = lastFullRebuildAt ?? (indexBuilt && index.builtAt ? index.builtAt.getTime() : void 0);
|
|
14144
15187
|
const indexAge = freshnessTimestamp ? Math.floor((Date.now() - freshnessTimestamp) / 1e3) : -1;
|
|
14145
15188
|
const indexStale = indexBuilt && indexAge > STALE_THRESHOLD_SECONDS;
|
|
14146
15189
|
if (indexState2 === "building") {
|
|
@@ -14193,14 +15236,13 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14193
15236
|
let lastRebuild;
|
|
14194
15237
|
if (stateDb2) {
|
|
14195
15238
|
try {
|
|
14196
|
-
const
|
|
14197
|
-
if (
|
|
14198
|
-
const event = events[0];
|
|
15239
|
+
const rebuildEvent = lastBuild && lastManual ? lastBuild.timestamp >= lastManual.timestamp ? lastBuild : lastManual : lastBuild ?? lastManual;
|
|
15240
|
+
if (rebuildEvent) {
|
|
14199
15241
|
lastRebuild = {
|
|
14200
|
-
trigger:
|
|
14201
|
-
timestamp:
|
|
14202
|
-
duration_ms:
|
|
14203
|
-
ago_seconds: Math.floor((Date.now() -
|
|
15242
|
+
trigger: rebuildEvent.trigger,
|
|
15243
|
+
timestamp: rebuildEvent.timestamp,
|
|
15244
|
+
duration_ms: rebuildEvent.duration_ms,
|
|
15245
|
+
ago_seconds: Math.floor((Date.now() - rebuildEvent.timestamp) / 1e3)
|
|
14204
15246
|
};
|
|
14205
15247
|
}
|
|
14206
15248
|
} catch {
|
|
@@ -14284,13 +15326,13 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14284
15326
|
linkDensity * 25 + orphanRatio * 20 + deadLinkRatio * 15 + fmCoverage * 15 + freshness * 15 + entityCoverage * 10
|
|
14285
15327
|
);
|
|
14286
15328
|
}
|
|
14287
|
-
const activity =
|
|
14288
|
-
const
|
|
14289
|
-
busy: activity
|
|
14290
|
-
current_step: activity
|
|
14291
|
-
started_at: activity
|
|
14292
|
-
progress: activity.busy && activity.total_steps > 0 ? `${activity.completed_steps}/${activity.total_steps} steps` : null,
|
|
14293
|
-
last_completed_ago_seconds: activity
|
|
15329
|
+
const activity = getPipelineActivityState();
|
|
15330
|
+
const pipelineActivity = {
|
|
15331
|
+
busy: activity?.busy ?? false,
|
|
15332
|
+
current_step: activity?.current_step ?? null,
|
|
15333
|
+
started_at: activity?.started_at ?? null,
|
|
15334
|
+
progress: activity && activity.busy && activity.total_steps > 0 ? `${activity.completed_steps}/${activity.total_steps} steps` : null,
|
|
15335
|
+
last_completed_ago_seconds: activity?.last_completed_at ? Math.floor((Date.now() - activity.last_completed_at) / 1e3) : null
|
|
14294
15336
|
};
|
|
14295
15337
|
const output = {
|
|
14296
15338
|
status,
|
|
@@ -14328,9 +15370,9 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14328
15370
|
last_index_activity_ago_seconds: lastIndexActivityAt ? Math.floor((Date.now() - lastIndexActivityAt) / 1e3) : void 0,
|
|
14329
15371
|
last_full_rebuild_at: lastFullRebuildAt,
|
|
14330
15372
|
last_watcher_batch_at: lastWatcherBatchAt,
|
|
14331
|
-
pipeline_activity:
|
|
14332
|
-
dead_link_count: deadLinkCount,
|
|
14333
|
-
top_dead_link_targets: topDeadLinkTargets,
|
|
15373
|
+
pipeline_activity: pipelineActivity,
|
|
15374
|
+
dead_link_count: isFull ? deadLinkCount : void 0,
|
|
15375
|
+
top_dead_link_targets: isFull ? topDeadLinkTargets : void 0,
|
|
14334
15376
|
sweep: isFull ? getSweepResults() ?? void 0 : void 0,
|
|
14335
15377
|
recommendations
|
|
14336
15378
|
};
|
|
@@ -14355,17 +15397,17 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14355
15397
|
}
|
|
14356
15398
|
},
|
|
14357
15399
|
async ({ detail = false }) => {
|
|
14358
|
-
const activity =
|
|
15400
|
+
const activity = getPipelineActivityState();
|
|
14359
15401
|
const now = Date.now();
|
|
14360
15402
|
const output = {
|
|
14361
|
-
busy: activity
|
|
14362
|
-
trigger: activity
|
|
14363
|
-
started_at: activity
|
|
14364
|
-
age_ms: activity
|
|
14365
|
-
current_step: activity
|
|
14366
|
-
progress: activity.busy && activity.total_steps > 0 ? `${activity.completed_steps}/${activity.total_steps} steps` : null,
|
|
14367
|
-
pending_events: activity
|
|
14368
|
-
last_completed: activity
|
|
15403
|
+
busy: activity?.busy ?? false,
|
|
15404
|
+
trigger: activity?.trigger ?? null,
|
|
15405
|
+
started_at: activity?.started_at ?? null,
|
|
15406
|
+
age_ms: activity?.busy && activity.started_at ? now - activity.started_at : null,
|
|
15407
|
+
current_step: activity?.current_step ?? null,
|
|
15408
|
+
progress: activity && activity.busy && activity.total_steps > 0 ? `${activity.completed_steps}/${activity.total_steps} steps` : null,
|
|
15409
|
+
pending_events: activity?.pending_events ?? 0,
|
|
15410
|
+
last_completed: activity?.last_completed_at ? {
|
|
14369
15411
|
at: activity.last_completed_at,
|
|
14370
15412
|
ago_seconds: Math.floor((now - activity.last_completed_at) / 1e3),
|
|
14371
15413
|
trigger: activity.last_completed_trigger,
|
|
@@ -14581,7 +15623,7 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14581
15623
|
"flywheel_doctor",
|
|
14582
15624
|
{
|
|
14583
15625
|
title: "Flywheel Doctor",
|
|
14584
|
-
description: "
|
|
15626
|
+
description: "Is anything broken? Actively checks for problems (unlike health_check which reports status) Checks: schema version, index freshness, embedding coverage, suppression health, cache freshness, FTS5 integrity, watcher state, and disk usage.",
|
|
14585
15627
|
inputSchema: {}
|
|
14586
15628
|
},
|
|
14587
15629
|
async () => {
|
|
@@ -14810,7 +15852,7 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14810
15852
|
"flywheel_trust_report",
|
|
14811
15853
|
{
|
|
14812
15854
|
title: "Flywheel Trust Report",
|
|
14813
|
-
description: "
|
|
15855
|
+
description: "What can this server do and what has it done? Returns active config/preset, enabled tool categories, transport mode, recent write operations, and enforced boundaries. Supports the cognitive sovereignty thesis with verifiable transparency.",
|
|
14814
15856
|
inputSchema: {}
|
|
14815
15857
|
},
|
|
14816
15858
|
async () => {
|
|
@@ -14821,8 +15863,9 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14821
15863
|
const transportMode = (process.env.FLYWHEEL_TRANSPORT ?? "stdio").toLowerCase();
|
|
14822
15864
|
const httpPort = transportMode !== "stdio" ? parseInt(process.env.FLYWHEEL_HTTP_PORT ?? "3111", 10) : void 0;
|
|
14823
15865
|
const httpHost = transportMode !== "stdio" ? process.env.FLYWHEEL_HTTP_HOST ?? "127.0.0.1" : void 0;
|
|
14824
|
-
const
|
|
14825
|
-
const enabledCategories2 =
|
|
15866
|
+
const toolConfig2 = resolveToolConfig();
|
|
15867
|
+
const enabledCategories2 = toolConfig2.categories;
|
|
15868
|
+
const presetEnv = toolConfig2.preset ?? "custom";
|
|
14826
15869
|
const disabledCategories = ALL_CATEGORIES.filter((c) => !enabledCategories2.has(c));
|
|
14827
15870
|
const totalTools = Object.keys(TOOL_CATEGORY).length;
|
|
14828
15871
|
const enabledTools = Object.entries(TOOL_CATEGORY).filter(([, cat]) => enabledCategories2.has(cat)).length;
|
|
@@ -14876,7 +15919,7 @@ function registerHealthTools(server2, getIndex, getVaultPath, getConfig2 = () =>
|
|
|
14876
15919
|
"flywheel_benchmark",
|
|
14877
15920
|
{
|
|
14878
15921
|
title: "Flywheel Benchmark",
|
|
14879
|
-
description: '
|
|
15922
|
+
description: 'Is the server getting slower? Runs, records, and trends longitudinal performance benchmarks. Modes: "run" executes live benchmarks (search latency, entity lookup, index/watcher timing) and records results; "history" shows past benchmark results; "trends" shows regression/improvement analysis over time.',
|
|
14880
15923
|
inputSchema: {
|
|
14881
15924
|
mode: z5.enum(["run", "history", "trends"]).default("run").describe("run = execute benchmarks, history = past results, trends = regression analysis"),
|
|
14882
15925
|
benchmark: z5.string().optional().describe('Filter to a specific benchmark name (e.g. "search_latency")'),
|
|
@@ -15253,6 +16296,16 @@ function registerSystemTools(server2, getIndex, setIndex, getVaultPath, setConfi
|
|
|
15253
16296
|
}]));
|
|
15254
16297
|
entityEmbeddingsRefreshed = await buildEntityEmbeddingsIndex(vaultPath2, entityMap);
|
|
15255
16298
|
loadEntityEmbeddingsToMemory();
|
|
16299
|
+
saveInferredCategories(classifyUncategorizedEntities(
|
|
16300
|
+
entities.map((entity) => ({
|
|
16301
|
+
entity: {
|
|
16302
|
+
name: entity.name,
|
|
16303
|
+
path: entity.path,
|
|
16304
|
+
aliases: entity.aliases
|
|
16305
|
+
},
|
|
16306
|
+
category: entity.category
|
|
16307
|
+
}))
|
|
16308
|
+
));
|
|
15256
16309
|
tracker.end({ refreshed: entityEmbeddingsRefreshed });
|
|
15257
16310
|
if (entityEmbeddingsRefreshed > 0) {
|
|
15258
16311
|
console.error(`[Flywheel] Entity embeddings: ${entityEmbeddingsRefreshed} updated`);
|
|
@@ -15593,6 +16646,16 @@ function registerSystemTools(server2, getIndex, setIndex, getVaultPath, setConfi
|
|
|
15593
16646
|
}
|
|
15594
16647
|
}
|
|
15595
16648
|
}
|
|
16649
|
+
const otherArr = entityIndex2.other;
|
|
16650
|
+
if (Array.isArray(otherArr)) {
|
|
16651
|
+
for (const entity of otherArr) {
|
|
16652
|
+
const inferred = getInferredCategory(entity.name);
|
|
16653
|
+
if (inferred) {
|
|
16654
|
+
entity.inferredCategory = inferred.category;
|
|
16655
|
+
entity.inferredConfidence = inferred.confidence;
|
|
16656
|
+
}
|
|
16657
|
+
}
|
|
16658
|
+
}
|
|
15596
16659
|
if (category) {
|
|
15597
16660
|
const allCategories2 = Object.keys(entityIndex2).filter((k) => k !== "_metadata");
|
|
15598
16661
|
for (const cat of allCategories2) {
|
|
@@ -21833,18 +22896,201 @@ function registerWikilinkFeedbackTools(server2, getStateDb3) {
|
|
|
21833
22896
|
);
|
|
21834
22897
|
}
|
|
21835
22898
|
|
|
22899
|
+
// src/tools/write/toolSelectionFeedback.ts
|
|
22900
|
+
import { z as z24 } from "zod";
|
|
22901
|
+
init_vault_scope();
|
|
22902
|
+
function registerToolSelectionFeedbackTools(server2, getStateDb3) {
|
|
22903
|
+
server2.registerTool(
|
|
22904
|
+
"tool_selection_feedback",
|
|
22905
|
+
{
|
|
22906
|
+
title: "Tool Selection Feedback",
|
|
22907
|
+
description: 'Report and query tool selection quality. Tracks whether the right tool was picked for a given query. Modes: "report" (record feedback \u2014 was the tool pick correct or wrong?), "list" (recent feedback entries), "stats" (per-tool posterior accuracy from explicit feedback), "misroutes" (heuristic-detected advisory misroutes \u2014 T15b placeholder).',
|
|
22908
|
+
inputSchema: {
|
|
22909
|
+
mode: z24.enum(["report", "list", "stats", "misroutes"]).describe("Operation mode"),
|
|
22910
|
+
correct: z24.boolean().optional().describe("Was the tool selection correct? (required for report mode)"),
|
|
22911
|
+
tool_invocation_id: z24.number().optional().describe("ID of the tool invocation being evaluated (preferred \u2014 hydrates tool_name, query_context, session_id automatically)"),
|
|
22912
|
+
tool_name: z24.string().optional().describe("Tool that was called (used when tool_invocation_id not available)"),
|
|
22913
|
+
expected_tool: z24.string().optional().describe("Tool that should have been called instead"),
|
|
22914
|
+
expected_category: z24.string().optional().describe("Category that should have been used instead"),
|
|
22915
|
+
reason: z24.string().optional().describe("Optional reason for the feedback"),
|
|
22916
|
+
days_back: z24.number().min(1).max(365).optional().describe("Lookback period for stats mode (default: 30)"),
|
|
22917
|
+
limit: z24.number().min(1).max(200).optional().describe("Max entries for list mode (default: 50)")
|
|
22918
|
+
}
|
|
22919
|
+
},
|
|
22920
|
+
async (args) => {
|
|
22921
|
+
const stateDb2 = getStateDb3();
|
|
22922
|
+
if (!stateDb2) {
|
|
22923
|
+
return {
|
|
22924
|
+
content: [{ type: "text", text: JSON.stringify({ error: "StateDb not available" }) }],
|
|
22925
|
+
isError: true
|
|
22926
|
+
};
|
|
22927
|
+
}
|
|
22928
|
+
switch (args.mode) {
|
|
22929
|
+
case "report": {
|
|
22930
|
+
if (args.correct === void 0) {
|
|
22931
|
+
return {
|
|
22932
|
+
content: [{ type: "text", text: JSON.stringify({ error: "correct (boolean) is required for report mode" }) }],
|
|
22933
|
+
isError: true
|
|
22934
|
+
};
|
|
22935
|
+
}
|
|
22936
|
+
if (!args.tool_invocation_id && !args.tool_name) {
|
|
22937
|
+
return {
|
|
22938
|
+
content: [{ type: "text", text: JSON.stringify({ error: "Either tool_invocation_id or tool_name is required" }) }],
|
|
22939
|
+
isError: true
|
|
22940
|
+
};
|
|
22941
|
+
}
|
|
22942
|
+
const id = recordToolSelectionFeedback(stateDb2, {
|
|
22943
|
+
tool_invocation_id: args.tool_invocation_id,
|
|
22944
|
+
tool_name: args.tool_name,
|
|
22945
|
+
expected_tool: args.expected_tool,
|
|
22946
|
+
expected_category: args.expected_category,
|
|
22947
|
+
correct: args.correct
|
|
22948
|
+
});
|
|
22949
|
+
try {
|
|
22950
|
+
const vaultName = getActiveScopeOrNull()?.name;
|
|
22951
|
+
if (vaultName) {
|
|
22952
|
+
const scores = getToolEffectivenessScores(stateDb2);
|
|
22953
|
+
loadEffectivenessSnapshot(vaultName, scores);
|
|
22954
|
+
}
|
|
22955
|
+
} catch {
|
|
22956
|
+
}
|
|
22957
|
+
return {
|
|
22958
|
+
content: [{ type: "text", text: JSON.stringify({
|
|
22959
|
+
recorded: true,
|
|
22960
|
+
feedback_id: id,
|
|
22961
|
+
correct: args.correct,
|
|
22962
|
+
tool_invocation_id: args.tool_invocation_id ?? null,
|
|
22963
|
+
tool_name: args.tool_name ?? null,
|
|
22964
|
+
expected_tool: args.expected_tool ?? null,
|
|
22965
|
+
expected_category: args.expected_category ?? null
|
|
22966
|
+
}, null, 2) }]
|
|
22967
|
+
};
|
|
22968
|
+
}
|
|
22969
|
+
case "list": {
|
|
22970
|
+
const entries = getToolSelectionList(stateDb2, args.limit ?? 50);
|
|
22971
|
+
return {
|
|
22972
|
+
content: [{ type: "text", text: JSON.stringify({
|
|
22973
|
+
count: entries.length,
|
|
22974
|
+
entries
|
|
22975
|
+
}, null, 2) }]
|
|
22976
|
+
};
|
|
22977
|
+
}
|
|
22978
|
+
case "stats": {
|
|
22979
|
+
const stats = getToolSelectionStats(stateDb2, args.days_back ?? 30);
|
|
22980
|
+
return {
|
|
22981
|
+
content: [{ type: "text", text: JSON.stringify({
|
|
22982
|
+
period_days: args.days_back ?? 30,
|
|
22983
|
+
tools: stats
|
|
22984
|
+
}, null, 2) }]
|
|
22985
|
+
};
|
|
22986
|
+
}
|
|
22987
|
+
case "misroutes": {
|
|
22988
|
+
const misroutes = getHeuristicMisroutes(stateDb2, args.limit ?? 50);
|
|
22989
|
+
return {
|
|
22990
|
+
content: [{ type: "text", text: JSON.stringify({
|
|
22991
|
+
count: misroutes.length,
|
|
22992
|
+
misroutes: misroutes.map((m) => ({
|
|
22993
|
+
id: m.id,
|
|
22994
|
+
timestamp: m.timestamp,
|
|
22995
|
+
tool_invocation_id: m.tool_invocation_id,
|
|
22996
|
+
tool_name: m.tool_name,
|
|
22997
|
+
query_context: m.query_context,
|
|
22998
|
+
expected_category: m.expected_category,
|
|
22999
|
+
rule_id: m.rule_id,
|
|
23000
|
+
rule_version: m.rule_version
|
|
23001
|
+
}))
|
|
23002
|
+
}, null, 2) }]
|
|
23003
|
+
};
|
|
23004
|
+
}
|
|
23005
|
+
default:
|
|
23006
|
+
return {
|
|
23007
|
+
content: [{ type: "text", text: JSON.stringify({ error: `Unknown mode: ${args.mode}` }) }],
|
|
23008
|
+
isError: true
|
|
23009
|
+
};
|
|
23010
|
+
}
|
|
23011
|
+
}
|
|
23012
|
+
);
|
|
23013
|
+
}
|
|
23014
|
+
|
|
23015
|
+
// src/core/shared/misrouteDetection.ts
|
|
23016
|
+
var CATCH_ALL_TOOLS = /* @__PURE__ */ new Set(["search", "brief"]);
|
|
23017
|
+
var MISROUTE_RULES = [
|
|
23018
|
+
{
|
|
23019
|
+
ruleId: "temporal-via-wrong-cat",
|
|
23020
|
+
ruleVersion: 1,
|
|
23021
|
+
patterns: [/\b(history|timeline|timelines|evolution|stale notes?|around date|weekly review|monthly review|quarterly review)\b/i],
|
|
23022
|
+
expectedCategory: "temporal",
|
|
23023
|
+
description: "temporal query routed to non-temporal tool"
|
|
23024
|
+
},
|
|
23025
|
+
{
|
|
23026
|
+
ruleId: "graph-via-wrong-cat",
|
|
23027
|
+
ruleVersion: 1,
|
|
23028
|
+
patterns: [/\b(backlinks?|forward links?|connections?|link path|hubs?|orphans?|clusters?|bridges?)\b/i],
|
|
23029
|
+
expectedCategory: "graph",
|
|
23030
|
+
description: "graph query routed to non-graph tool"
|
|
23031
|
+
},
|
|
23032
|
+
{
|
|
23033
|
+
ruleId: "schema-via-wrong-cat",
|
|
23034
|
+
ruleVersion: 1,
|
|
23035
|
+
patterns: [/\b(schema|schemas|frontmatter conventions?|rename field|rename tag|migrate)\b/i],
|
|
23036
|
+
expectedCategory: "schema",
|
|
23037
|
+
description: "schema query routed to non-schema tool"
|
|
23038
|
+
},
|
|
23039
|
+
{
|
|
23040
|
+
ruleId: "wikilinks-via-wrong-cat",
|
|
23041
|
+
ruleVersion: 1,
|
|
23042
|
+
patterns: [/\b(wikilinks?|link suggestions?|stubs?|unlinked mentions?)\b/i],
|
|
23043
|
+
expectedCategory: "wikilinks",
|
|
23044
|
+
description: "wikilink query routed to non-wikilink tool"
|
|
23045
|
+
}
|
|
23046
|
+
];
|
|
23047
|
+
function detectMisroute(toolName, queryContext) {
|
|
23048
|
+
if (!queryContext || !queryContext.trim()) return null;
|
|
23049
|
+
if (CATCH_ALL_TOOLS.has(toolName)) return null;
|
|
23050
|
+
const toolCategory = TOOL_CATEGORY[toolName];
|
|
23051
|
+
if (!toolCategory) return null;
|
|
23052
|
+
for (const rule of MISROUTE_RULES) {
|
|
23053
|
+
if (toolCategory === rule.expectedCategory) continue;
|
|
23054
|
+
if (rule.patterns.some((p) => p.test(queryContext))) {
|
|
23055
|
+
return {
|
|
23056
|
+
expectedCategory: rule.expectedCategory,
|
|
23057
|
+
ruleId: rule.ruleId,
|
|
23058
|
+
ruleVersion: rule.ruleVersion,
|
|
23059
|
+
description: rule.description
|
|
23060
|
+
};
|
|
23061
|
+
}
|
|
23062
|
+
}
|
|
23063
|
+
return null;
|
|
23064
|
+
}
|
|
23065
|
+
function recordHeuristicMisroute(stateDb2, toolInvocationId, detection) {
|
|
23066
|
+
stateDb2.db.prepare(`
|
|
23067
|
+
INSERT INTO tool_selection_feedback
|
|
23068
|
+
(timestamp, tool_invocation_id, tool_name, query_context, expected_category, correct, source, rule_id, rule_version, session_id)
|
|
23069
|
+
SELECT
|
|
23070
|
+
?, id, tool_name, query_context, ?, NULL, 'heuristic', ?, ?, session_id
|
|
23071
|
+
FROM tool_invocations
|
|
23072
|
+
WHERE id = ?
|
|
23073
|
+
`).run(
|
|
23074
|
+
Date.now(),
|
|
23075
|
+
detection.expectedCategory,
|
|
23076
|
+
detection.ruleId,
|
|
23077
|
+
detection.ruleVersion,
|
|
23078
|
+
toolInvocationId
|
|
23079
|
+
);
|
|
23080
|
+
}
|
|
23081
|
+
|
|
21836
23082
|
// src/tools/write/corrections.ts
|
|
21837
23083
|
init_corrections();
|
|
21838
|
-
import { z as
|
|
23084
|
+
import { z as z25 } from "zod";
|
|
21839
23085
|
function registerCorrectionTools(server2, getStateDb3) {
|
|
21840
23086
|
server2.tool(
|
|
21841
23087
|
"vault_record_correction",
|
|
21842
23088
|
'Record a persistent correction (e.g., "that link is wrong", "undo that"). Survives across sessions.',
|
|
21843
23089
|
{
|
|
21844
|
-
correction_type:
|
|
21845
|
-
description:
|
|
21846
|
-
entity:
|
|
21847
|
-
note_path:
|
|
23090
|
+
correction_type: z25.enum(["wrong_link", "wrong_entity", "wrong_category", "general"]).describe("Type of correction"),
|
|
23091
|
+
description: z25.string().describe("What went wrong and what should be done"),
|
|
23092
|
+
entity: z25.string().optional().describe("Entity name (if correction is about a specific entity)"),
|
|
23093
|
+
note_path: z25.string().optional().describe("Note path (if correction is about a specific note)")
|
|
21848
23094
|
},
|
|
21849
23095
|
async ({ correction_type, description, entity, note_path }) => {
|
|
21850
23096
|
const stateDb2 = getStateDb3();
|
|
@@ -21870,9 +23116,9 @@ function registerCorrectionTools(server2, getStateDb3) {
|
|
|
21870
23116
|
"vault_list_corrections",
|
|
21871
23117
|
"List recorded corrections, optionally filtered by status or entity.",
|
|
21872
23118
|
{
|
|
21873
|
-
status:
|
|
21874
|
-
entity:
|
|
21875
|
-
limit:
|
|
23119
|
+
status: z25.enum(["pending", "applied", "dismissed"]).optional().describe("Filter by status"),
|
|
23120
|
+
entity: z25.string().optional().describe("Filter by entity name"),
|
|
23121
|
+
limit: z25.number().min(1).max(200).default(50).describe("Max entries to return")
|
|
21876
23122
|
},
|
|
21877
23123
|
async ({ status, entity, limit }) => {
|
|
21878
23124
|
const stateDb2 = getStateDb3();
|
|
@@ -21898,8 +23144,8 @@ function registerCorrectionTools(server2, getStateDb3) {
|
|
|
21898
23144
|
"vault_resolve_correction",
|
|
21899
23145
|
"Resolve a correction by marking it as applied or dismissed.",
|
|
21900
23146
|
{
|
|
21901
|
-
correction_id:
|
|
21902
|
-
status:
|
|
23147
|
+
correction_id: z25.number().describe("ID of the correction to resolve"),
|
|
23148
|
+
status: z25.enum(["applied", "dismissed"]).describe("New status")
|
|
21903
23149
|
},
|
|
21904
23150
|
async ({ correction_id, status }) => {
|
|
21905
23151
|
const stateDb2 = getStateDb3();
|
|
@@ -21931,30 +23177,30 @@ function registerCorrectionTools(server2, getStateDb3) {
|
|
|
21931
23177
|
}
|
|
21932
23178
|
|
|
21933
23179
|
// src/tools/write/memory.ts
|
|
21934
|
-
import { z as
|
|
23180
|
+
import { z as z26 } from "zod";
|
|
21935
23181
|
function registerMemoryTools(server2, getStateDb3) {
|
|
21936
23182
|
server2.tool(
|
|
21937
23183
|
"memory",
|
|
21938
23184
|
"Store, retrieve, search, and manage agent working memory. Actions: store, get, search, list, forget, summarize_session.",
|
|
21939
23185
|
{
|
|
21940
|
-
action:
|
|
23186
|
+
action: z26.enum(["store", "get", "search", "list", "forget", "summarize_session"]).describe("Action to perform"),
|
|
21941
23187
|
// store params
|
|
21942
|
-
key:
|
|
21943
|
-
value:
|
|
21944
|
-
type:
|
|
21945
|
-
entity:
|
|
21946
|
-
confidence:
|
|
21947
|
-
ttl_days:
|
|
23188
|
+
key: z26.string().optional().describe('Memory key (e.g., "user.pref.theme", "project.x.deadline")'),
|
|
23189
|
+
value: z26.string().optional().describe("The fact/preference/observation to store (up to 2000 chars)"),
|
|
23190
|
+
type: z26.enum(["fact", "preference", "observation", "summary"]).optional().describe("Memory type"),
|
|
23191
|
+
entity: z26.string().optional().describe("Primary entity association"),
|
|
23192
|
+
confidence: z26.number().min(0).max(1).optional().describe("Confidence level (0-1, default 1.0)"),
|
|
23193
|
+
ttl_days: z26.number().min(1).optional().describe("Time-to-live in days (null = permanent)"),
|
|
21948
23194
|
// search params
|
|
21949
|
-
query:
|
|
23195
|
+
query: z26.string().optional().describe("FTS5 search query"),
|
|
21950
23196
|
// list/search params
|
|
21951
|
-
limit:
|
|
23197
|
+
limit: z26.number().min(1).max(200).optional().describe("Max results to return"),
|
|
21952
23198
|
// summarize_session params
|
|
21953
|
-
session_id:
|
|
21954
|
-
summary:
|
|
21955
|
-
topics:
|
|
21956
|
-
notes_modified:
|
|
21957
|
-
tool_count:
|
|
23199
|
+
session_id: z26.string().optional().describe("Session ID for summarize_session"),
|
|
23200
|
+
summary: z26.string().optional().describe("Session summary text"),
|
|
23201
|
+
topics: z26.array(z26.string()).optional().describe("Topics discussed in session"),
|
|
23202
|
+
notes_modified: z26.array(z26.string()).optional().describe("Note paths modified during session"),
|
|
23203
|
+
tool_count: z26.number().optional().describe("Number of tool calls in session")
|
|
21958
23204
|
},
|
|
21959
23205
|
async (args) => {
|
|
21960
23206
|
const stateDb2 = getStateDb3();
|
|
@@ -22151,7 +23397,7 @@ function registerMemoryTools(server2, getStateDb3) {
|
|
|
22151
23397
|
}
|
|
22152
23398
|
|
|
22153
23399
|
// src/tools/read/brief.ts
|
|
22154
|
-
import { z as
|
|
23400
|
+
import { z as z27 } from "zod";
|
|
22155
23401
|
init_corrections();
|
|
22156
23402
|
function estimateTokens2(value) {
|
|
22157
23403
|
const str = JSON.stringify(value);
|
|
@@ -22293,8 +23539,8 @@ function registerBriefTools(server2, getStateDb3) {
|
|
|
22293
23539
|
"brief",
|
|
22294
23540
|
"Get a startup context briefing: recent sessions, active entities, memories, pending corrections, and vault stats. Call at conversation start.",
|
|
22295
23541
|
{
|
|
22296
|
-
max_tokens:
|
|
22297
|
-
focus:
|
|
23542
|
+
max_tokens: z27.number().optional().describe("Token budget (lower-priority sections truncated first)"),
|
|
23543
|
+
focus: z27.string().optional().describe("Focus entity or topic (filters content)")
|
|
22298
23544
|
},
|
|
22299
23545
|
async (args) => {
|
|
22300
23546
|
const stateDb2 = getStateDb3();
|
|
@@ -22345,28 +23591,29 @@ function registerBriefTools(server2, getStateDb3) {
|
|
|
22345
23591
|
}
|
|
22346
23592
|
|
|
22347
23593
|
// src/tools/write/config.ts
|
|
22348
|
-
import { z as
|
|
23594
|
+
import { z as z28 } from "zod";
|
|
22349
23595
|
import { saveFlywheelConfigToDb as saveFlywheelConfigToDb2 } from "@velvetmonkey/vault-core";
|
|
22350
23596
|
var VALID_CONFIG_KEYS = {
|
|
22351
|
-
vault_name:
|
|
22352
|
-
exclude:
|
|
23597
|
+
vault_name: z28.string(),
|
|
23598
|
+
exclude: z28.array(z28.string()),
|
|
22353
23599
|
/** @deprecated Use `exclude` instead */
|
|
22354
|
-
exclude_task_tags:
|
|
23600
|
+
exclude_task_tags: z28.array(z28.string()),
|
|
22355
23601
|
/** @deprecated Use `exclude` instead */
|
|
22356
|
-
exclude_analysis_tags:
|
|
23602
|
+
exclude_analysis_tags: z28.array(z28.string()),
|
|
22357
23603
|
/** @deprecated Use `exclude` instead */
|
|
22358
|
-
exclude_entities:
|
|
22359
|
-
exclude_entity_folders:
|
|
22360
|
-
wikilink_strictness:
|
|
22361
|
-
implicit_detection:
|
|
22362
|
-
implicit_patterns:
|
|
22363
|
-
adaptive_strictness:
|
|
22364
|
-
proactive_linking:
|
|
22365
|
-
proactive_min_score:
|
|
22366
|
-
proactive_max_per_file:
|
|
22367
|
-
proactive_max_per_day:
|
|
22368
|
-
|
|
22369
|
-
|
|
23604
|
+
exclude_entities: z28.array(z28.string()),
|
|
23605
|
+
exclude_entity_folders: z28.array(z28.string()),
|
|
23606
|
+
wikilink_strictness: z28.enum(["conservative", "balanced", "aggressive"]),
|
|
23607
|
+
implicit_detection: z28.boolean(),
|
|
23608
|
+
implicit_patterns: z28.array(z28.string()),
|
|
23609
|
+
adaptive_strictness: z28.boolean(),
|
|
23610
|
+
proactive_linking: z28.boolean(),
|
|
23611
|
+
proactive_min_score: z28.number(),
|
|
23612
|
+
proactive_max_per_file: z28.number(),
|
|
23613
|
+
proactive_max_per_day: z28.number(),
|
|
23614
|
+
tool_tier_override: z28.enum(["auto", "full", "minimal"]),
|
|
23615
|
+
custom_categories: z28.record(z28.string(), z28.object({
|
|
23616
|
+
type_boost: z28.number().optional()
|
|
22370
23617
|
}))
|
|
22371
23618
|
};
|
|
22372
23619
|
function registerConfigTools(server2, getConfig2, setConfig, getStateDb3) {
|
|
@@ -22376,9 +23623,9 @@ function registerConfigTools(server2, getConfig2, setConfig, getStateDb3) {
|
|
|
22376
23623
|
title: "Flywheel Config",
|
|
22377
23624
|
description: 'Read or update Flywheel configuration.\n- "get": Returns the current FlywheelConfig\n- "set": Updates a single config key and returns the updated config\n\nExample: flywheel_config({ mode: "get" })\nExample: flywheel_config({ mode: "set", key: "exclude", value: ["#habit", "#daily", "walk", "vitamins"] })',
|
|
22378
23625
|
inputSchema: {
|
|
22379
|
-
mode:
|
|
22380
|
-
key:
|
|
22381
|
-
value:
|
|
23626
|
+
mode: z28.enum(["get", "set"]).describe("Operation mode"),
|
|
23627
|
+
key: z28.string().optional().describe("Config key to update (required for set mode)"),
|
|
23628
|
+
value: z28.unknown().optional().describe("New value for the key (required for set mode)")
|
|
22382
23629
|
}
|
|
22383
23630
|
},
|
|
22384
23631
|
async ({ mode, key, value }) => {
|
|
@@ -22434,7 +23681,7 @@ function registerConfigTools(server2, getConfig2, setConfig, getStateDb3) {
|
|
|
22434
23681
|
// src/tools/write/enrich.ts
|
|
22435
23682
|
init_wikilinks();
|
|
22436
23683
|
init_wikilinkFeedback();
|
|
22437
|
-
import { z as
|
|
23684
|
+
import { z as z29 } from "zod";
|
|
22438
23685
|
import * as fs32 from "fs/promises";
|
|
22439
23686
|
import * as path35 from "path";
|
|
22440
23687
|
import { scanVaultEntities as scanVaultEntities3, SCHEMA_VERSION as SCHEMA_VERSION2 } from "@velvetmonkey/vault-core";
|
|
@@ -22739,10 +23986,10 @@ function registerInitTools(server2, getVaultPath, getStateDb3) {
|
|
|
22739
23986
|
"vault_init",
|
|
22740
23987
|
`Initialize vault for Flywheel. Modes: "status" (check what's ready/missing), "run" (execute missing init steps), "enrich" (scan notes with zero wikilinks and apply entity links).`,
|
|
22741
23988
|
{
|
|
22742
|
-
mode:
|
|
22743
|
-
dry_run:
|
|
22744
|
-
batch_size:
|
|
22745
|
-
offset:
|
|
23989
|
+
mode: z29.enum(["status", "run", "enrich"]).default("status").describe("Operation mode (default: status)"),
|
|
23990
|
+
dry_run: z29.boolean().default(true).describe("For enrich mode: preview without modifying files (default: true)"),
|
|
23991
|
+
batch_size: z29.number().default(50).describe("For enrich mode: max notes per invocation (default: 50)"),
|
|
23992
|
+
offset: z29.number().default(0).describe("For enrich mode: skip this many eligible notes (for pagination)")
|
|
22746
23993
|
},
|
|
22747
23994
|
async ({ mode, dry_run, batch_size, offset }) => {
|
|
22748
23995
|
const stateDb2 = getStateDb3();
|
|
@@ -22769,18 +24016,18 @@ function registerInitTools(server2, getVaultPath, getStateDb3) {
|
|
|
22769
24016
|
}
|
|
22770
24017
|
|
|
22771
24018
|
// src/tools/read/metrics.ts
|
|
22772
|
-
import { z as
|
|
24019
|
+
import { z as z30 } from "zod";
|
|
22773
24020
|
function registerMetricsTools(server2, getIndex, getStateDb3) {
|
|
22774
24021
|
server2.registerTool(
|
|
22775
24022
|
"vault_growth",
|
|
22776
24023
|
{
|
|
22777
24024
|
title: "Vault Growth",
|
|
22778
|
-
description: '
|
|
24025
|
+
description: 'How is the vault growing? Tracks vault growth over time. Modes: "current" (live snapshot), "history" (time series), "trends" (deltas vs N days ago), "index_activity" (rebuild history). Tracks 11 metrics: note_count, link_count, orphan_count, tag_count, entity_count, avg_links_per_note, link_density, connected_ratio, wikilink_accuracy, wikilink_feedback_volume, wikilink_suppressed_count.',
|
|
22779
24026
|
inputSchema: {
|
|
22780
|
-
mode:
|
|
22781
|
-
metric:
|
|
22782
|
-
days_back:
|
|
22783
|
-
limit:
|
|
24027
|
+
mode: z30.enum(["current", "history", "trends", "index_activity"]).describe("Query mode: current snapshot, historical time series, trend analysis, or index rebuild activity"),
|
|
24028
|
+
metric: z30.string().optional().describe('Filter to specific metric (e.g., "note_count"). Omit for all metrics.'),
|
|
24029
|
+
days_back: z30.number().optional().describe("Number of days to look back for history/trends (default: 30)"),
|
|
24030
|
+
limit: z30.number().optional().describe("Number of recent events to return for index_activity mode (default: 20)")
|
|
22784
24031
|
}
|
|
22785
24032
|
},
|
|
22786
24033
|
async ({ mode, metric, days_back, limit: eventLimit }) => {
|
|
@@ -22853,18 +24100,18 @@ function registerMetricsTools(server2, getIndex, getStateDb3) {
|
|
|
22853
24100
|
}
|
|
22854
24101
|
|
|
22855
24102
|
// src/tools/read/activity.ts
|
|
22856
|
-
import { z as
|
|
24103
|
+
import { z as z31 } from "zod";
|
|
22857
24104
|
function registerActivityTools(server2, getStateDb3, getSessionId2) {
|
|
22858
24105
|
server2.registerTool(
|
|
22859
24106
|
"vault_activity",
|
|
22860
24107
|
{
|
|
22861
24108
|
title: "Vault Activity",
|
|
22862
|
-
description: '
|
|
24109
|
+
description: 'What tools have been used and what notes accessed? Tracks tool usage patterns and session activity. Modes:\n- "session": Current session summary (tools called, notes accessed)\n- "sessions": List of recent sessions\n- "note_access": Notes ranked by query frequency\n- "tool_usage": Tool usage patterns (most-used tools, avg duration)',
|
|
22863
24110
|
inputSchema: {
|
|
22864
|
-
mode:
|
|
22865
|
-
session_id:
|
|
22866
|
-
days_back:
|
|
22867
|
-
limit:
|
|
24111
|
+
mode: z31.enum(["session", "sessions", "note_access", "tool_usage"]).describe("Activity query mode"),
|
|
24112
|
+
session_id: z31.string().optional().describe("Specific session ID (for session mode, defaults to current)"),
|
|
24113
|
+
days_back: z31.number().optional().describe("Number of days to look back (default: 30)"),
|
|
24114
|
+
limit: z31.number().optional().describe("Maximum results to return (default: 20)")
|
|
22868
24115
|
}
|
|
22869
24116
|
},
|
|
22870
24117
|
async ({ mode, session_id, days_back, limit: resultLimit }) => {
|
|
@@ -22931,7 +24178,7 @@ function registerActivityTools(server2, getStateDb3, getSessionId2) {
|
|
|
22931
24178
|
}
|
|
22932
24179
|
|
|
22933
24180
|
// src/tools/read/similarity.ts
|
|
22934
|
-
import { z as
|
|
24181
|
+
import { z as z32 } from "zod";
|
|
22935
24182
|
|
|
22936
24183
|
// src/core/read/similarity.ts
|
|
22937
24184
|
import * as fs33 from "fs";
|
|
@@ -23142,9 +24389,9 @@ function registerSimilarityTools(server2, getIndex, getVaultPath, getStateDb3) {
|
|
|
23142
24389
|
title: "Find Similar Notes",
|
|
23143
24390
|
description: "Find notes similar to a given note using FTS5 keyword matching. When embeddings have been built (via init_semantic), automatically uses hybrid ranking (BM25 + embedding similarity via Reciprocal Rank Fusion). Already-linked notes are automatically excluded.",
|
|
23144
24391
|
inputSchema: {
|
|
23145
|
-
path:
|
|
23146
|
-
limit:
|
|
23147
|
-
diversity:
|
|
24392
|
+
path: z32.string().describe('Path to the source note (relative to vault root, e.g. "projects/alpha.md")'),
|
|
24393
|
+
limit: z32.number().optional().describe("Maximum number of similar notes to return (default: 10)"),
|
|
24394
|
+
diversity: z32.number().min(0).max(1).optional().describe("Relevance vs diversity tradeoff (0=max diversity, 1=pure relevance, default: 0.7)")
|
|
23148
24395
|
}
|
|
23149
24396
|
},
|
|
23150
24397
|
async ({ path: path39, limit, diversity }) => {
|
|
@@ -23189,7 +24436,7 @@ function registerSimilarityTools(server2, getIndex, getVaultPath, getStateDb3) {
|
|
|
23189
24436
|
|
|
23190
24437
|
// src/tools/read/semantic.ts
|
|
23191
24438
|
init_embeddings();
|
|
23192
|
-
import { z as
|
|
24439
|
+
import { z as z33 } from "zod";
|
|
23193
24440
|
import { getAllEntitiesFromDb as getAllEntitiesFromDb4 } from "@velvetmonkey/vault-core";
|
|
23194
24441
|
function registerSemanticTools(server2, getVaultPath, getStateDb3) {
|
|
23195
24442
|
server2.registerTool(
|
|
@@ -23198,7 +24445,7 @@ function registerSemanticTools(server2, getVaultPath, getStateDb3) {
|
|
|
23198
24445
|
title: "Initialize Semantic Search",
|
|
23199
24446
|
description: "Download the embedding model and build semantic search index for this vault. After running, search and find_similar automatically use hybrid ranking (BM25 + semantic). Run once per vault \u2014 subsequent calls verify health and skip already-embedded notes unless force=true.",
|
|
23200
24447
|
inputSchema: {
|
|
23201
|
-
force:
|
|
24448
|
+
force: z33.boolean().optional().describe(
|
|
23202
24449
|
"Clear and rebuild all embeddings from scratch (default: false)"
|
|
23203
24450
|
)
|
|
23204
24451
|
}
|
|
@@ -23276,6 +24523,16 @@ function registerSemanticTools(server2, getVaultPath, getStateDb3) {
|
|
|
23276
24523
|
}
|
|
23277
24524
|
});
|
|
23278
24525
|
loadEntityEmbeddingsToMemory();
|
|
24526
|
+
saveInferredCategories(classifyUncategorizedEntities(
|
|
24527
|
+
allEntities.map((entity) => ({
|
|
24528
|
+
entity: {
|
|
24529
|
+
name: entity.name,
|
|
24530
|
+
path: entity.path,
|
|
24531
|
+
aliases: entity.aliases
|
|
24532
|
+
},
|
|
24533
|
+
category: entity.category
|
|
24534
|
+
}))
|
|
24535
|
+
));
|
|
23279
24536
|
}
|
|
23280
24537
|
} catch (err) {
|
|
23281
24538
|
console.error("[Semantic] Entity embeddings failed:", err instanceof Error ? err.message : err);
|
|
@@ -23306,7 +24563,7 @@ function registerSemanticTools(server2, getVaultPath, getStateDb3) {
|
|
|
23306
24563
|
|
|
23307
24564
|
// src/tools/read/merges.ts
|
|
23308
24565
|
init_levenshtein();
|
|
23309
|
-
import { z as
|
|
24566
|
+
import { z as z34 } from "zod";
|
|
23310
24567
|
import { getAllEntitiesFromDb as getAllEntitiesFromDb5, getDismissedMergePairs, recordMergeDismissal } from "@velvetmonkey/vault-core";
|
|
23311
24568
|
function normalizeName(name) {
|
|
23312
24569
|
return name.toLowerCase().replace(/[.\-_]/g, "").replace(/js$/, "").replace(/ts$/, "");
|
|
@@ -23316,7 +24573,7 @@ function registerMergeTools2(server2, getStateDb3) {
|
|
|
23316
24573
|
"suggest_entity_merges",
|
|
23317
24574
|
"Find potential duplicate entities that could be merged based on name similarity",
|
|
23318
24575
|
{
|
|
23319
|
-
limit:
|
|
24576
|
+
limit: z34.number().optional().default(50).describe("Maximum number of suggestions to return")
|
|
23320
24577
|
},
|
|
23321
24578
|
async ({ limit }) => {
|
|
23322
24579
|
const stateDb2 = getStateDb3();
|
|
@@ -23418,11 +24675,11 @@ function registerMergeTools2(server2, getStateDb3) {
|
|
|
23418
24675
|
"dismiss_merge_suggestion",
|
|
23419
24676
|
"Permanently dismiss a merge suggestion so it never reappears",
|
|
23420
24677
|
{
|
|
23421
|
-
source_path:
|
|
23422
|
-
target_path:
|
|
23423
|
-
source_name:
|
|
23424
|
-
target_name:
|
|
23425
|
-
reason:
|
|
24678
|
+
source_path: z34.string().describe("Path of the source entity"),
|
|
24679
|
+
target_path: z34.string().describe("Path of the target entity"),
|
|
24680
|
+
source_name: z34.string().describe("Name of the source entity"),
|
|
24681
|
+
target_name: z34.string().describe("Name of the target entity"),
|
|
24682
|
+
reason: z34.string().describe("Original suggestion reason")
|
|
23426
24683
|
},
|
|
23427
24684
|
async ({ source_path, target_path, source_name, target_name, reason }) => {
|
|
23428
24685
|
const stateDb2 = getStateDb3();
|
|
@@ -23441,7 +24698,7 @@ function registerMergeTools2(server2, getStateDb3) {
|
|
|
23441
24698
|
}
|
|
23442
24699
|
|
|
23443
24700
|
// src/tools/read/temporalAnalysis.ts
|
|
23444
|
-
import { z as
|
|
24701
|
+
import { z as z35 } from "zod";
|
|
23445
24702
|
init_wikilinks();
|
|
23446
24703
|
function formatDate3(d) {
|
|
23447
24704
|
return d.toISOString().split("T")[0];
|
|
@@ -23965,11 +25222,11 @@ function registerTemporalAnalysisTools(server2, getIndex, getVaultPath, getState
|
|
|
23965
25222
|
"get_context_around_date",
|
|
23966
25223
|
{
|
|
23967
25224
|
title: "Context Around Date",
|
|
23968
|
-
description: "
|
|
25225
|
+
description: "What was happening around a specific date? Shows modified/created notes, active entities, wikilink activity, and file moves within a time window.",
|
|
23969
25226
|
inputSchema: {
|
|
23970
|
-
date:
|
|
23971
|
-
window_days:
|
|
23972
|
-
limit:
|
|
25227
|
+
date: z35.string().describe("Center date in YYYY-MM-DD format"),
|
|
25228
|
+
window_days: z35.coerce.number().default(3).describe("Days before and after the center date (default 3 = 7-day window)"),
|
|
25229
|
+
limit: z35.coerce.number().default(50).describe("Maximum number of notes to return")
|
|
23973
25230
|
}
|
|
23974
25231
|
},
|
|
23975
25232
|
async ({ date, window_days, limit: requestedLimit }) => {
|
|
@@ -23982,14 +25239,14 @@ function registerTemporalAnalysisTools(server2, getIndex, getVaultPath, getState
|
|
|
23982
25239
|
"predict_stale_notes",
|
|
23983
25240
|
{
|
|
23984
25241
|
title: "Predict Stale Notes",
|
|
23985
|
-
description: "
|
|
25242
|
+
description: "Which notes need attention? Scores notes by importance (backlinks, hub score, tasks, status) and staleness risk (age, entity disconnect, task urgency). Returns concrete recommendations: archive, update, review, or low_priority.",
|
|
23986
25243
|
inputSchema: {
|
|
23987
|
-
days:
|
|
23988
|
-
min_importance:
|
|
23989
|
-
include_recommendations:
|
|
23990
|
-
folder:
|
|
23991
|
-
limit:
|
|
23992
|
-
offset:
|
|
25244
|
+
days: z35.coerce.number().default(30).describe("Notes not modified in this many days (default 30)"),
|
|
25245
|
+
min_importance: z35.coerce.number().default(0).describe("Filter by minimum importance score 0-100 (default 0)"),
|
|
25246
|
+
include_recommendations: z35.boolean().default(true).describe("Include action recommendations (default true)"),
|
|
25247
|
+
folder: z35.string().optional().describe("Limit to notes in this folder"),
|
|
25248
|
+
limit: z35.coerce.number().default(30).describe("Maximum results to return (default 30)"),
|
|
25249
|
+
offset: z35.coerce.number().default(0).describe("Results to skip for pagination (default 0)")
|
|
23993
25250
|
}
|
|
23994
25251
|
},
|
|
23995
25252
|
async ({ days, min_importance, include_recommendations, folder, limit: requestedLimit, offset }) => {
|
|
@@ -24011,11 +25268,11 @@ function registerTemporalAnalysisTools(server2, getIndex, getVaultPath, getState
|
|
|
24011
25268
|
"track_concept_evolution",
|
|
24012
25269
|
{
|
|
24013
25270
|
title: "Track Concept Evolution",
|
|
24014
|
-
description: "
|
|
25271
|
+
description: "How has an entity changed over time? Timeline of link additions/removals, feedback events, category changes, co-occurrence shifts. Shows current state, chronological event history, link durability stats, and top co-occurrence neighbors.",
|
|
24015
25272
|
inputSchema: {
|
|
24016
|
-
entity:
|
|
24017
|
-
days_back:
|
|
24018
|
-
include_cooccurrence:
|
|
25273
|
+
entity: z35.string().describe("Entity name (case-insensitive)"),
|
|
25274
|
+
days_back: z35.coerce.number().default(90).describe("How far back to look (default 90 days)"),
|
|
25275
|
+
include_cooccurrence: z35.boolean().default(true).describe("Include co-occurrence neighbors (default true)")
|
|
24019
25276
|
}
|
|
24020
25277
|
},
|
|
24021
25278
|
async ({ entity, days_back, include_cooccurrence }) => {
|
|
@@ -24033,12 +25290,12 @@ function registerTemporalAnalysisTools(server2, getIndex, getVaultPath, getState
|
|
|
24033
25290
|
"temporal_summary",
|
|
24034
25291
|
{
|
|
24035
25292
|
title: "Temporal Summary",
|
|
24036
|
-
description: "
|
|
25293
|
+
description: "Summarize vault activity for a time period (week, month, quarter). Composes context, staleness prediction, and concept evolution into a single summary. Shows activity snapshot, entity momentum, and maintenance alerts. Use for weekly/monthly/quarterly reviews.",
|
|
24037
25294
|
inputSchema: {
|
|
24038
|
-
start_date:
|
|
24039
|
-
end_date:
|
|
24040
|
-
focus_entities:
|
|
24041
|
-
limit:
|
|
25295
|
+
start_date: z35.string().describe("Start of period in YYYY-MM-DD format"),
|
|
25296
|
+
end_date: z35.string().describe("End of period in YYYY-MM-DD format"),
|
|
25297
|
+
focus_entities: z35.array(z35.string()).optional().describe("Specific entities to track evolution for (default: top 5 active entities in period)"),
|
|
25298
|
+
limit: z35.coerce.number().default(50).describe("Maximum notes to include in context snapshot")
|
|
24042
25299
|
}
|
|
24043
25300
|
},
|
|
24044
25301
|
async ({ start_date, end_date, focus_entities, limit: requestedLimit }) => {
|
|
@@ -24057,15 +25314,15 @@ function registerTemporalAnalysisTools(server2, getIndex, getVaultPath, getState
|
|
|
24057
25314
|
}
|
|
24058
25315
|
|
|
24059
25316
|
// src/tools/read/sessionHistory.ts
|
|
24060
|
-
import { z as
|
|
25317
|
+
import { z as z36 } from "zod";
|
|
24061
25318
|
function registerSessionHistoryTools(server2, getStateDb3) {
|
|
24062
25319
|
server2.tool(
|
|
24063
25320
|
"vault_session_history",
|
|
24064
25321
|
"View session history. Without session_id: lists recent sessions. With session_id: returns chronological tool invocations, notes accessed, and timing. Hierarchical sessions supported (parent ID includes child sessions).",
|
|
24065
25322
|
{
|
|
24066
|
-
session_id:
|
|
24067
|
-
include_children:
|
|
24068
|
-
limit:
|
|
25323
|
+
session_id: z36.string().optional().describe("Session ID for detail view. Omit for recent sessions list."),
|
|
25324
|
+
include_children: z36.boolean().optional().describe("Include child sessions (default: true)"),
|
|
25325
|
+
limit: z36.number().min(1).max(500).optional().describe("Max invocations to return in detail view (default: 200)")
|
|
24069
25326
|
},
|
|
24070
25327
|
async (args) => {
|
|
24071
25328
|
const stateDb2 = getStateDb3();
|
|
@@ -24092,12 +25349,14 @@ function registerSessionHistoryTools(server2, getStateDb3) {
|
|
|
24092
25349
|
content: [{ type: "text", text: JSON.stringify({
|
|
24093
25350
|
...detail.summary,
|
|
24094
25351
|
invocations: detail.invocations.map((inv) => ({
|
|
25352
|
+
invocation_id: inv.id,
|
|
24095
25353
|
tool: inv.tool_name,
|
|
24096
25354
|
timestamp: inv.timestamp,
|
|
24097
25355
|
session_id: inv.session_id,
|
|
24098
25356
|
note_paths: inv.note_paths,
|
|
24099
25357
|
duration_ms: inv.duration_ms,
|
|
24100
|
-
success: inv.success
|
|
25358
|
+
success: inv.success,
|
|
25359
|
+
query_context: inv.query_context
|
|
24101
25360
|
}))
|
|
24102
25361
|
}, null, 2) }]
|
|
24103
25362
|
};
|
|
@@ -24113,7 +25372,7 @@ function registerSessionHistoryTools(server2, getStateDb3) {
|
|
|
24113
25372
|
}
|
|
24114
25373
|
|
|
24115
25374
|
// src/tools/read/entityHistory.ts
|
|
24116
|
-
import { z as
|
|
25375
|
+
import { z as z37 } from "zod";
|
|
24117
25376
|
|
|
24118
25377
|
// src/core/read/entityHistory.ts
|
|
24119
25378
|
function normalizeTimestamp(ts) {
|
|
@@ -24271,8 +25530,8 @@ function registerEntityHistoryTools(server2, getStateDb3) {
|
|
|
24271
25530
|
"vault_entity_history",
|
|
24272
25531
|
"Get a unified timeline of everything about an entity: when it was linked, feedback received, suggestion scores, edge weight changes, metadata mutations, memories, and corrections. Sorted chronologically with pagination.",
|
|
24273
25532
|
{
|
|
24274
|
-
entity_name:
|
|
24275
|
-
event_types:
|
|
25533
|
+
entity_name: z37.string().describe("Entity name to query (case-insensitive)"),
|
|
25534
|
+
event_types: z37.array(z37.enum([
|
|
24276
25535
|
"application",
|
|
24277
25536
|
"feedback",
|
|
24278
25537
|
"suggestion",
|
|
@@ -24281,10 +25540,10 @@ function registerEntityHistoryTools(server2, getStateDb3) {
|
|
|
24281
25540
|
"memory",
|
|
24282
25541
|
"correction"
|
|
24283
25542
|
])).optional().describe("Filter to specific event types. Omit for all types."),
|
|
24284
|
-
start_date:
|
|
24285
|
-
end_date:
|
|
24286
|
-
limit:
|
|
24287
|
-
offset:
|
|
25543
|
+
start_date: z37.string().optional().describe("Start date (YYYY-MM-DD) for date range filter"),
|
|
25544
|
+
end_date: z37.string().optional().describe("End date (YYYY-MM-DD) for date range filter"),
|
|
25545
|
+
limit: z37.number().min(1).max(200).optional().describe("Max events to return (default: 50)"),
|
|
25546
|
+
offset: z37.number().min(0).optional().describe("Offset for pagination (default: 0)")
|
|
24288
25547
|
},
|
|
24289
25548
|
async (args) => {
|
|
24290
25549
|
const stateDb2 = getStateDb3();
|
|
@@ -24316,7 +25575,7 @@ function registerEntityHistoryTools(server2, getStateDb3) {
|
|
|
24316
25575
|
}
|
|
24317
25576
|
|
|
24318
25577
|
// src/tools/read/learningReport.ts
|
|
24319
|
-
import { z as
|
|
25578
|
+
import { z as z38 } from "zod";
|
|
24320
25579
|
|
|
24321
25580
|
// src/core/read/learningReport.ts
|
|
24322
25581
|
function isoDate(d) {
|
|
@@ -24425,6 +25684,10 @@ function getLearningReport(stateDb2, entityCount, linkCount, daysBack = 7, compa
|
|
|
24425
25684
|
funnel: queryFunnel(stateDb2, bounds.start, bounds.end, bounds.startMs, bounds.endMs),
|
|
24426
25685
|
graph: { link_count: linkCount, entity_count: entityCount }
|
|
24427
25686
|
};
|
|
25687
|
+
const toolSelection = getToolSelectionReport(stateDb2, daysBack);
|
|
25688
|
+
if (toolSelection) {
|
|
25689
|
+
report.tool_selection = toolSelection;
|
|
25690
|
+
}
|
|
24428
25691
|
if (compare) {
|
|
24429
25692
|
const prevEnd = new Date(now);
|
|
24430
25693
|
prevEnd.setDate(prevEnd.getDate() - daysBack);
|
|
@@ -24452,8 +25715,8 @@ function registerLearningReportTools(server2, getIndex, getStateDb3) {
|
|
|
24452
25715
|
"flywheel_learning_report",
|
|
24453
25716
|
"Get a narrative report of the flywheel auto-linking system's learning progress. Shows: applications by day, feedback (positive/negative), survival rate, top rejected entities, suggestion funnel (evaluations \u2192 applications \u2192 survivals), and graph growth. Use compare=true for period-over-period deltas.",
|
|
24454
25717
|
{
|
|
24455
|
-
days_back:
|
|
24456
|
-
compare:
|
|
25718
|
+
days_back: z38.number().min(1).max(365).optional().describe("Analysis window in days (default: 7). Use 1 for today, 2 for last 48h, etc."),
|
|
25719
|
+
compare: z38.boolean().optional().describe("Include comparison with the preceding equal-length period (default: false)")
|
|
24457
25720
|
},
|
|
24458
25721
|
async (args) => {
|
|
24459
25722
|
const stateDb2 = getStateDb3();
|
|
@@ -24480,7 +25743,7 @@ function registerLearningReportTools(server2, getIndex, getStateDb3) {
|
|
|
24480
25743
|
}
|
|
24481
25744
|
|
|
24482
25745
|
// src/tools/read/calibrationExport.ts
|
|
24483
|
-
import { z as
|
|
25746
|
+
import { z as z39 } from "zod";
|
|
24484
25747
|
|
|
24485
25748
|
// src/core/read/calibrationExport.ts
|
|
24486
25749
|
init_wikilinkFeedback();
|
|
@@ -24488,7 +25751,9 @@ init_embeddings();
|
|
|
24488
25751
|
import { createHash as createHash3 } from "node:crypto";
|
|
24489
25752
|
var LAYER_KEYS = [
|
|
24490
25753
|
"contentMatch",
|
|
25754
|
+
"fuzzyMatch",
|
|
24491
25755
|
"cooccurrenceBoost",
|
|
25756
|
+
"rarityAdjustment",
|
|
24492
25757
|
"typeBoost",
|
|
24493
25758
|
"contextBoost",
|
|
24494
25759
|
"recencyBoost",
|
|
@@ -24695,7 +25960,7 @@ function queryCooccurrenceAnalysis(stateDb2, startMs, startIso, endIso) {
|
|
|
24695
25960
|
}
|
|
24696
25961
|
totalCount++;
|
|
24697
25962
|
coocSum += bd.cooccurrenceBoost ?? 0;
|
|
24698
|
-
if ((bd.contentMatch ?? 0) === 0 && (bd.cooccurrenceBoost ?? 0) > 0) {
|
|
25963
|
+
if ((bd.contentMatch ?? 0) === 0 && (bd.fuzzyMatch ?? 0) === 0 && (bd.cooccurrenceBoost ?? 0) > 0) {
|
|
24699
25964
|
coocOnlyCount++;
|
|
24700
25965
|
if (r.status != null) {
|
|
24701
25966
|
coocOnlyApplied++;
|
|
@@ -24773,8 +26038,8 @@ function registerCalibrationExportTools(server2, getIndex, getStateDb3, getConfi
|
|
|
24773
26038
|
"flywheel_calibration_export",
|
|
24774
26039
|
"Export anonymized aggregate scoring data for cross-vault algorithm calibration. No entity names, note paths, or content \u2014 safe to share. Includes: suggestion funnel, per-layer contribution averages, survival rates by entity category, score distribution, suppression stats, recency/co-occurrence effectiveness, and threshold sweep.",
|
|
24775
26040
|
{
|
|
24776
|
-
days_back:
|
|
24777
|
-
include_vault_id:
|
|
26041
|
+
days_back: z39.number().min(1).max(365).optional().describe("Analysis window in days (default: 30)"),
|
|
26042
|
+
include_vault_id: z39.boolean().optional().describe("Include anonymous vault ID for longitudinal tracking (default: true)")
|
|
24778
26043
|
},
|
|
24779
26044
|
async (args) => {
|
|
24780
26045
|
const stateDb2 = getStateDb3();
|
|
@@ -24908,9 +26173,93 @@ function registerVaultResources(server2, getIndex) {
|
|
|
24908
26173
|
var __trFilename = fileURLToPath(import.meta.url);
|
|
24909
26174
|
var __trDirname = dirname5(__trFilename);
|
|
24910
26175
|
var trPkg = JSON.parse(readFileSync5(join19(__trDirname, "../package.json"), "utf-8"));
|
|
24911
|
-
|
|
26176
|
+
var ACTIVATION_PATTERNS = [
|
|
26177
|
+
{
|
|
26178
|
+
category: "graph",
|
|
26179
|
+
tier: 2,
|
|
26180
|
+
patterns: [/\b(backlinks?|forward links?|connections?|link path|paths?|hubs?|orphans?|dead ends?|clusters?|bridges?)\b/i]
|
|
26181
|
+
},
|
|
26182
|
+
{
|
|
26183
|
+
category: "wikilinks",
|
|
26184
|
+
tier: 2,
|
|
26185
|
+
patterns: [/\b(wikilinks?|link suggestions?|stubs?|unlinked mentions?|aliases?)\b/i]
|
|
26186
|
+
},
|
|
26187
|
+
{
|
|
26188
|
+
category: "corrections",
|
|
26189
|
+
tier: 2,
|
|
26190
|
+
patterns: [/\b(corrections?|wrong links?|bad links?|mistakes?|fix(es|ing)?|errors?)\b/i]
|
|
26191
|
+
},
|
|
26192
|
+
{
|
|
26193
|
+
category: "temporal",
|
|
26194
|
+
tier: 2,
|
|
26195
|
+
patterns: [/\b(history|timeline|timelines|evolution|stale notes?|around date|weekly review|monthly review|quarterly review)\b/i]
|
|
26196
|
+
},
|
|
26197
|
+
{
|
|
26198
|
+
category: "diagnostics",
|
|
26199
|
+
tier: 2,
|
|
26200
|
+
patterns: [/\b(health|doctor|diagnostics?|status|config|configuration|pipeline|refresh index|reindex|logs?)\b/i]
|
|
26201
|
+
},
|
|
26202
|
+
{
|
|
26203
|
+
category: "schema",
|
|
26204
|
+
tier: 3,
|
|
26205
|
+
patterns: [/\b(schema|schemas|frontmatter|metadata|conventions?|rename field|rename tag|migrate)\b/i]
|
|
26206
|
+
},
|
|
26207
|
+
{
|
|
26208
|
+
category: "note-ops",
|
|
26209
|
+
tier: 3,
|
|
26210
|
+
patterns: [/\b(delete note|move note|rename note|merge entities|merge notes?)\b/i]
|
|
26211
|
+
}
|
|
26212
|
+
];
|
|
26213
|
+
function getPatternSignals(raw) {
|
|
26214
|
+
if (!raw) return [];
|
|
26215
|
+
return ACTIVATION_PATTERNS.filter(({ patterns }) => patterns.some((pattern) => pattern.test(raw))).map(({ category, tier }) => ({ category, tier }));
|
|
26216
|
+
}
|
|
26217
|
+
async function getActivationSignals(toolName, params, searchMethod, toolTierMode2 = "off") {
|
|
26218
|
+
if (toolName !== "search" && toolName !== "brief") return [];
|
|
26219
|
+
if (!params || typeof params !== "object") return [];
|
|
26220
|
+
const raw = [
|
|
26221
|
+
typeof params.query === "string" ? params.query : "",
|
|
26222
|
+
typeof params.focus === "string" ? params.focus : ""
|
|
26223
|
+
].filter(Boolean).join(" ");
|
|
26224
|
+
if (!raw) return [];
|
|
26225
|
+
const routingMode = getToolRoutingMode(toolTierMode2);
|
|
26226
|
+
const patternSignals = routingMode !== "semantic" ? getPatternSignals(raw) : [];
|
|
26227
|
+
let semanticSignals = [];
|
|
26228
|
+
if (routingMode !== "pattern" && searchMethod === "hybrid" && hasToolRouting()) {
|
|
26229
|
+
semanticSignals = await getSemanticActivations(raw);
|
|
26230
|
+
}
|
|
26231
|
+
if (routingMode === "semantic" && searchMethod !== "hybrid") {
|
|
26232
|
+
return getPatternSignals(raw);
|
|
26233
|
+
}
|
|
26234
|
+
const categoryBest = /* @__PURE__ */ new Map();
|
|
26235
|
+
for (const { category, tier } of [...patternSignals, ...semanticSignals]) {
|
|
26236
|
+
const existing = categoryBest.get(category);
|
|
26237
|
+
if (!existing || tier > existing) {
|
|
26238
|
+
categoryBest.set(category, tier);
|
|
26239
|
+
}
|
|
26240
|
+
}
|
|
26241
|
+
return Array.from(categoryBest.entries()).map(([category, tier]) => ({ category, tier }));
|
|
26242
|
+
}
|
|
26243
|
+
function extractSearchMethod(result) {
|
|
26244
|
+
if (!result || typeof result !== "object") return void 0;
|
|
26245
|
+
const content = result.content;
|
|
26246
|
+
if (!Array.isArray(content) || content.length === 0) return void 0;
|
|
26247
|
+
const first = content[0];
|
|
26248
|
+
if (first?.type !== "text" || typeof first.text !== "string") return void 0;
|
|
26249
|
+
try {
|
|
26250
|
+
const parsed = JSON.parse(first.text);
|
|
26251
|
+
if (typeof parsed.method === "string") return parsed.method;
|
|
26252
|
+
} catch {
|
|
26253
|
+
}
|
|
26254
|
+
return void 0;
|
|
26255
|
+
}
|
|
26256
|
+
function applyToolGating(targetServer, categories, getDb4, registry, getVaultPath, vaultCallbacks, tierMode = "off", onTierStateChange) {
|
|
24912
26257
|
let _registered = 0;
|
|
24913
26258
|
let _skipped = 0;
|
|
26259
|
+
let tierOverride = "auto";
|
|
26260
|
+
const toolHandles = /* @__PURE__ */ new Map();
|
|
26261
|
+
const activatedCategoryTiers = /* @__PURE__ */ new Map();
|
|
26262
|
+
let controllerRef = null;
|
|
24914
26263
|
function gate(name) {
|
|
24915
26264
|
const category = TOOL_CATEGORY[name];
|
|
24916
26265
|
if (!category) {
|
|
@@ -24925,6 +26274,70 @@ function applyToolGating(targetServer, categories, getDb4, registry, getVaultPat
|
|
|
24925
26274
|
_registered++;
|
|
24926
26275
|
return true;
|
|
24927
26276
|
}
|
|
26277
|
+
function enableCategory(category, tier) {
|
|
26278
|
+
if (!categories.has(category)) return;
|
|
26279
|
+
const previousTier = activatedCategoryTiers.get(category) ?? 0;
|
|
26280
|
+
if (tier > previousTier) {
|
|
26281
|
+
activatedCategoryTiers.set(category, tier);
|
|
26282
|
+
}
|
|
26283
|
+
refreshToolVisibility();
|
|
26284
|
+
}
|
|
26285
|
+
function shouldEnableTool(toolName) {
|
|
26286
|
+
const tier = TOOL_TIER[toolName];
|
|
26287
|
+
const category = TOOL_CATEGORY[toolName];
|
|
26288
|
+
if (!tier || !category) return true;
|
|
26289
|
+
if (!categories.has(category)) return false;
|
|
26290
|
+
if (tierMode === "off") return true;
|
|
26291
|
+
if (tierOverride === "full") return true;
|
|
26292
|
+
if (tier === 1) return true;
|
|
26293
|
+
if (tierOverride === "minimal") return false;
|
|
26294
|
+
const activatedTier = activatedCategoryTiers.get(category) ?? 0;
|
|
26295
|
+
return activatedTier >= tier;
|
|
26296
|
+
}
|
|
26297
|
+
function refreshToolVisibility() {
|
|
26298
|
+
for (const [name, handle] of toolHandles) {
|
|
26299
|
+
const enabled = shouldEnableTool(name);
|
|
26300
|
+
if (enabled && !handle.enabled) {
|
|
26301
|
+
handle.enable();
|
|
26302
|
+
} else if (!enabled && handle.enabled) {
|
|
26303
|
+
handle.disable();
|
|
26304
|
+
}
|
|
26305
|
+
}
|
|
26306
|
+
if (controllerRef) {
|
|
26307
|
+
onTierStateChange?.(controllerRef);
|
|
26308
|
+
}
|
|
26309
|
+
}
|
|
26310
|
+
async function maybeActivateFromContext(toolName, params, searchMethod) {
|
|
26311
|
+
if (tierMode !== "tiered" || tierOverride === "full") return;
|
|
26312
|
+
for (const { category, tier } of await getActivationSignals(toolName, params, searchMethod, tierMode)) {
|
|
26313
|
+
enableCategory(category, tier);
|
|
26314
|
+
}
|
|
26315
|
+
}
|
|
26316
|
+
function ensureToolEnabledForDirectCall(toolName) {
|
|
26317
|
+
if (tierMode !== "tiered") return;
|
|
26318
|
+
const handle = toolHandles.get(toolName);
|
|
26319
|
+
if (!handle || handle.enabled) return;
|
|
26320
|
+
const category = TOOL_CATEGORY[toolName];
|
|
26321
|
+
const tier = TOOL_TIER[toolName];
|
|
26322
|
+
if (!category || !tier) return;
|
|
26323
|
+
enableCategory(category, tier);
|
|
26324
|
+
}
|
|
26325
|
+
const MAX_QUERY_CONTEXT_LENGTH = 500;
|
|
26326
|
+
const QUERY_CONTEXT_FIELDS = ["query", "focus", "analysis", "entity", "heading", "field", "date", "concept"];
|
|
26327
|
+
function extractQueryContext(params) {
|
|
26328
|
+
if (!params || typeof params !== "object") return void 0;
|
|
26329
|
+
const p = params;
|
|
26330
|
+
const parts = [];
|
|
26331
|
+
for (const field of QUERY_CONTEXT_FIELDS) {
|
|
26332
|
+
const val = p[field];
|
|
26333
|
+
if (typeof val === "string" && val.trim()) {
|
|
26334
|
+
parts.push(val.trim());
|
|
26335
|
+
}
|
|
26336
|
+
}
|
|
26337
|
+
if (parts.length === 0) return void 0;
|
|
26338
|
+
const joined = parts.join(" | ").replace(/\s+/g, " ");
|
|
26339
|
+
return joined.length > MAX_QUERY_CONTEXT_LENGTH ? joined.slice(0, MAX_QUERY_CONTEXT_LENGTH) : joined;
|
|
26340
|
+
}
|
|
24928
26341
|
function wrapWithTracking(toolName, handler) {
|
|
24929
26342
|
return async (...args) => {
|
|
24930
26343
|
const start = Date.now();
|
|
@@ -24943,6 +26356,8 @@ function applyToolGating(targetServer, categories, getDb4, registry, getVaultPat
|
|
|
24943
26356
|
}
|
|
24944
26357
|
try {
|
|
24945
26358
|
result = await handler(...args);
|
|
26359
|
+
const searchMethod = extractSearchMethod(result);
|
|
26360
|
+
await maybeActivateFromContext(toolName, params, searchMethod);
|
|
24946
26361
|
return result;
|
|
24947
26362
|
} catch (err) {
|
|
24948
26363
|
success = false;
|
|
@@ -24978,15 +26393,26 @@ function applyToolGating(targetServer, categories, getDb4, registry, getVaultPat
|
|
|
24978
26393
|
}
|
|
24979
26394
|
if (totalBytes > 0) baselineTokens = Math.ceil(totalBytes / 4);
|
|
24980
26395
|
}
|
|
24981
|
-
|
|
26396
|
+
const queryContext = extractQueryContext(params);
|
|
26397
|
+
const invocationId = recordToolInvocation(db4, {
|
|
24982
26398
|
tool_name: toolName,
|
|
24983
26399
|
session_id: sessionId,
|
|
24984
26400
|
note_paths: notePaths,
|
|
24985
26401
|
duration_ms: Date.now() - start,
|
|
24986
26402
|
success,
|
|
24987
26403
|
response_tokens: responseTokens,
|
|
24988
|
-
baseline_tokens: baselineTokens
|
|
26404
|
+
baseline_tokens: baselineTokens,
|
|
26405
|
+
query_context: queryContext
|
|
24989
26406
|
});
|
|
26407
|
+
if (queryContext) {
|
|
26408
|
+
try {
|
|
26409
|
+
const misroute = detectMisroute(toolName, queryContext);
|
|
26410
|
+
if (misroute) {
|
|
26411
|
+
recordHeuristicMisroute(db4, invocationId, misroute);
|
|
26412
|
+
}
|
|
26413
|
+
} catch {
|
|
26414
|
+
}
|
|
26415
|
+
}
|
|
24990
26416
|
} catch {
|
|
24991
26417
|
}
|
|
24992
26418
|
}
|
|
@@ -25097,7 +26523,7 @@ function applyToolGating(targetServer, categories, getDb4, registry, getVaultPat
|
|
|
25097
26523
|
const schemaIdx = handlerIdx - 1;
|
|
25098
26524
|
const schema = args[schemaIdx];
|
|
25099
26525
|
if (schema && typeof schema === "object" && !Array.isArray(schema)) {
|
|
25100
|
-
schema.vault =
|
|
26526
|
+
schema.vault = z40.string().optional().describe(
|
|
25101
26527
|
`Vault name for multi-vault mode. Available: ${registry.getVaultNames().join(", ")}. Default: ${registry.primaryName}`
|
|
25102
26528
|
);
|
|
25103
26529
|
}
|
|
@@ -25111,7 +26537,9 @@ function applyToolGating(targetServer, categories, getDb4, registry, getVaultPat
|
|
|
25111
26537
|
handler = wrapWithVaultActivation(name, handler);
|
|
25112
26538
|
args[args.length - 1] = wrapWithTracking(name, handler);
|
|
25113
26539
|
}
|
|
25114
|
-
|
|
26540
|
+
const registered = origTool(name, ...args);
|
|
26541
|
+
toolHandles.set(name, registered);
|
|
26542
|
+
return registered;
|
|
25115
26543
|
};
|
|
25116
26544
|
const origRegisterTool = targetServer.registerTool?.bind(targetServer);
|
|
25117
26545
|
if (origRegisterTool) {
|
|
@@ -25123,18 +26551,98 @@ function applyToolGating(targetServer, categories, getDb4, registry, getVaultPat
|
|
|
25123
26551
|
handler = wrapWithVaultActivation(name, handler);
|
|
25124
26552
|
args[args.length - 1] = wrapWithTracking(name, handler);
|
|
25125
26553
|
}
|
|
25126
|
-
|
|
26554
|
+
const registered = origRegisterTool(name, ...args);
|
|
26555
|
+
toolHandles.set(name, registered);
|
|
26556
|
+
return registered;
|
|
25127
26557
|
};
|
|
25128
26558
|
}
|
|
25129
|
-
|
|
25130
|
-
return
|
|
25131
|
-
|
|
25132
|
-
|
|
25133
|
-
|
|
26559
|
+
function installTieredCallHandler() {
|
|
26560
|
+
if (tierMode !== "tiered") return;
|
|
26561
|
+
const serverAny = targetServer;
|
|
26562
|
+
serverAny.server.setRequestHandler(CallToolRequestSchema, async (request, extra) => {
|
|
26563
|
+
try {
|
|
26564
|
+
const tool = serverAny._registeredTools[request.params.name];
|
|
26565
|
+
if (!tool) {
|
|
26566
|
+
throw new McpError(ErrorCode.InvalidParams, `Tool ${request.params.name} not found`);
|
|
26567
|
+
}
|
|
26568
|
+
if (!tool.enabled) {
|
|
26569
|
+
ensureToolEnabledForDirectCall(request.params.name);
|
|
26570
|
+
}
|
|
26571
|
+
if (!tool.enabled) {
|
|
26572
|
+
throw new McpError(ErrorCode.InvalidParams, `Tool ${request.params.name} disabled`);
|
|
26573
|
+
}
|
|
26574
|
+
const isTaskRequest = !!request.params.task;
|
|
26575
|
+
const taskSupport = tool.execution?.taskSupport;
|
|
26576
|
+
const isTaskHandler = "createTask" in tool.handler;
|
|
26577
|
+
if ((taskSupport === "required" || taskSupport === "optional") && !isTaskHandler) {
|
|
26578
|
+
throw new McpError(ErrorCode.InternalError, `Tool ${request.params.name} has taskSupport '${taskSupport}' but was not registered with registerToolTask`);
|
|
26579
|
+
}
|
|
26580
|
+
if (taskSupport === "required" && !isTaskRequest) {
|
|
26581
|
+
throw new McpError(ErrorCode.MethodNotFound, `Tool ${request.params.name} requires task augmentation (taskSupport: 'required')`);
|
|
26582
|
+
}
|
|
26583
|
+
if (taskSupport === "optional" && !isTaskRequest && isTaskHandler) {
|
|
26584
|
+
return await serverAny.handleAutomaticTaskPolling(tool, request, extra);
|
|
26585
|
+
}
|
|
26586
|
+
const args = await serverAny.validateToolInput(tool, request.params.arguments, request.params.name);
|
|
26587
|
+
const result = await serverAny.executeToolHandler(tool, args, extra);
|
|
26588
|
+
if (isTaskRequest) {
|
|
26589
|
+
return result;
|
|
26590
|
+
}
|
|
26591
|
+
await serverAny.validateToolOutput(tool, result, request.params.name);
|
|
26592
|
+
return result;
|
|
26593
|
+
} catch (error) {
|
|
26594
|
+
if (error instanceof McpError && error.code === ErrorCode.UrlElicitationRequired) {
|
|
26595
|
+
throw error;
|
|
26596
|
+
}
|
|
26597
|
+
return serverAny.createToolError(error instanceof Error ? error.message : String(error));
|
|
26598
|
+
}
|
|
26599
|
+
});
|
|
26600
|
+
}
|
|
26601
|
+
const controller = {
|
|
26602
|
+
mode: tierMode,
|
|
26603
|
+
get registered() {
|
|
26604
|
+
return _registered;
|
|
26605
|
+
},
|
|
26606
|
+
get skipped() {
|
|
26607
|
+
return _skipped;
|
|
26608
|
+
},
|
|
26609
|
+
get activeCategories() {
|
|
26610
|
+
return new Set(activatedCategoryTiers.keys());
|
|
26611
|
+
},
|
|
26612
|
+
getOverride() {
|
|
26613
|
+
return tierOverride;
|
|
26614
|
+
},
|
|
26615
|
+
finalizeRegistration() {
|
|
26616
|
+
refreshToolVisibility();
|
|
26617
|
+
installTieredCallHandler();
|
|
26618
|
+
},
|
|
26619
|
+
activateCategory(category, tier = 2) {
|
|
26620
|
+
enableCategory(category, tier);
|
|
26621
|
+
},
|
|
26622
|
+
enableTierCategory(category) {
|
|
26623
|
+
enableCategory(category, 2);
|
|
26624
|
+
},
|
|
26625
|
+
enableAllTiers() {
|
|
26626
|
+
tierOverride = "full";
|
|
26627
|
+
refreshToolVisibility();
|
|
26628
|
+
},
|
|
26629
|
+
setOverride(override) {
|
|
26630
|
+
tierOverride = override;
|
|
26631
|
+
refreshToolVisibility();
|
|
26632
|
+
},
|
|
26633
|
+
getActivatedCategoryTiers() {
|
|
26634
|
+
return new Map(activatedCategoryTiers);
|
|
26635
|
+
},
|
|
26636
|
+
getRegisteredTools() {
|
|
26637
|
+
return toolHandles;
|
|
26638
|
+
}
|
|
26639
|
+
};
|
|
26640
|
+
controllerRef = controller;
|
|
26641
|
+
return controller;
|
|
25134
26642
|
}
|
|
25135
26643
|
function registerAllTools(targetServer, ctx) {
|
|
25136
26644
|
const { getVaultPath: gvp, getVaultIndex: gvi, getStateDb: gsd, getFlywheelConfig: gcf } = ctx;
|
|
25137
|
-
registerHealthTools(targetServer, gvi, gvp, gcf, gsd, ctx.getWatcherStatus, () => trPkg.version);
|
|
26645
|
+
registerHealthTools(targetServer, gvi, gvp, gcf, gsd, ctx.getWatcherStatus, () => trPkg.version, ctx.getPipelineActivity);
|
|
25138
26646
|
registerSystemTools(
|
|
25139
26647
|
targetServer,
|
|
25140
26648
|
gvi,
|
|
@@ -25196,6 +26704,7 @@ function registerAllTools(targetServer, ctx) {
|
|
|
25196
26704
|
});
|
|
25197
26705
|
registerTagTools(targetServer, gvi, gvp);
|
|
25198
26706
|
registerWikilinkFeedbackTools(targetServer, gsd);
|
|
26707
|
+
registerToolSelectionFeedbackTools(targetServer, gsd);
|
|
25199
26708
|
registerCorrectionTools(targetServer, gsd);
|
|
25200
26709
|
registerInitTools(targetServer, gvp, gsd);
|
|
25201
26710
|
registerConfigTools(
|
|
@@ -25238,6 +26747,10 @@ var flywheelConfig = {};
|
|
|
25238
26747
|
var stateDb = null;
|
|
25239
26748
|
var watcherInstance = null;
|
|
25240
26749
|
var vaultRegistry = null;
|
|
26750
|
+
var httpListener = null;
|
|
26751
|
+
var watchdogTimer = null;
|
|
26752
|
+
var serverReady = false;
|
|
26753
|
+
var shutdownRequested = false;
|
|
25241
26754
|
function getWatcherStatus() {
|
|
25242
26755
|
if (vaultRegistry) {
|
|
25243
26756
|
const name = globalThis.__flywheel_active_vault;
|
|
@@ -25250,7 +26763,30 @@ function getWatcherStatus() {
|
|
|
25250
26763
|
}
|
|
25251
26764
|
return watcherInstance?.status ?? null;
|
|
25252
26765
|
}
|
|
25253
|
-
var
|
|
26766
|
+
var toolConfig = resolveToolConfig();
|
|
26767
|
+
var enabledCategories = toolConfig.categories;
|
|
26768
|
+
var toolTierMode = toolConfig.isFullToolset ? "tiered" : "off";
|
|
26769
|
+
var runtimeToolTierOverride = "auto";
|
|
26770
|
+
var runtimeActiveCategoryTiers = /* @__PURE__ */ new Map();
|
|
26771
|
+
var primaryToolTierController = null;
|
|
26772
|
+
function getInstructionActiveCategories() {
|
|
26773
|
+
if (toolTierMode !== "tiered") return void 0;
|
|
26774
|
+
if (runtimeToolTierOverride === "full") {
|
|
26775
|
+
return new Set(enabledCategories);
|
|
26776
|
+
}
|
|
26777
|
+
return new Set(runtimeActiveCategoryTiers.keys());
|
|
26778
|
+
}
|
|
26779
|
+
function syncRuntimeTierState(controller) {
|
|
26780
|
+
runtimeToolTierOverride = controller.getOverride();
|
|
26781
|
+
runtimeActiveCategoryTiers = new Map(controller.getActivatedCategoryTiers());
|
|
26782
|
+
}
|
|
26783
|
+
function handleTierStateChange(controller) {
|
|
26784
|
+
syncRuntimeTierState(controller);
|
|
26785
|
+
invalidateHttpPool();
|
|
26786
|
+
}
|
|
26787
|
+
function getConfigToolTierOverride(config) {
|
|
26788
|
+
return config.tool_tier_override ?? "auto";
|
|
26789
|
+
}
|
|
25254
26790
|
function buildRegistryContext() {
|
|
25255
26791
|
return {
|
|
25256
26792
|
getVaultPath: () => getActiveScopeOrNull()?.vaultPath ?? vaultPath,
|
|
@@ -25258,6 +26794,7 @@ function buildRegistryContext() {
|
|
|
25258
26794
|
getStateDb: () => getActiveScopeOrNull()?.stateDb ?? stateDb,
|
|
25259
26795
|
getFlywheelConfig: () => getActiveScopeOrNull()?.flywheelConfig ?? flywheelConfig,
|
|
25260
26796
|
getWatcherStatus,
|
|
26797
|
+
getPipelineActivity: () => getActiveScopeOrNull()?.pipelineActivity ?? null,
|
|
25261
26798
|
updateVaultIndex,
|
|
25262
26799
|
updateFlywheelConfig
|
|
25263
26800
|
};
|
|
@@ -25268,20 +26805,76 @@ function buildVaultCallbacks() {
|
|
|
25268
26805
|
function createConfiguredServer() {
|
|
25269
26806
|
const s = new McpServer(
|
|
25270
26807
|
{ name: "flywheel-memory", version: pkg.version },
|
|
25271
|
-
{ instructions: generateInstructions(enabledCategories, vaultRegistry) }
|
|
26808
|
+
{ instructions: generateInstructions(enabledCategories, vaultRegistry, getInstructionActiveCategories()) }
|
|
25272
26809
|
);
|
|
25273
26810
|
const ctx = buildRegistryContext();
|
|
25274
|
-
|
|
26811
|
+
const toolTierController = applyToolGating(
|
|
26812
|
+
s,
|
|
26813
|
+
enabledCategories,
|
|
26814
|
+
ctx.getStateDb,
|
|
26815
|
+
vaultRegistry,
|
|
26816
|
+
ctx.getVaultPath,
|
|
26817
|
+
buildVaultCallbacks(),
|
|
26818
|
+
toolTierMode,
|
|
26819
|
+
handleTierStateChange
|
|
26820
|
+
);
|
|
25275
26821
|
registerAllTools(s, ctx);
|
|
26822
|
+
toolTierController.setOverride(runtimeToolTierOverride);
|
|
26823
|
+
for (const [category, tier] of runtimeActiveCategoryTiers) {
|
|
26824
|
+
toolTierController.activateCategory(category, tier);
|
|
26825
|
+
}
|
|
26826
|
+
toolTierController.finalizeRegistration();
|
|
25276
26827
|
return s;
|
|
25277
26828
|
}
|
|
26829
|
+
var HTTP_POOL_SIZE = 4;
|
|
26830
|
+
var httpServerPool = [];
|
|
26831
|
+
var httpRequestCount = 0;
|
|
26832
|
+
var httpServerCreateCount = 0;
|
|
26833
|
+
var httpServerReuseCount = 0;
|
|
26834
|
+
var httpServerDiscardCount = 0;
|
|
26835
|
+
function acquireHttpServer() {
|
|
26836
|
+
const pooled = httpServerPool.pop();
|
|
26837
|
+
if (pooled) {
|
|
26838
|
+
httpServerReuseCount++;
|
|
26839
|
+
return pooled;
|
|
26840
|
+
}
|
|
26841
|
+
httpServerCreateCount++;
|
|
26842
|
+
return createConfiguredServer();
|
|
26843
|
+
}
|
|
26844
|
+
function releaseHttpServer(s) {
|
|
26845
|
+
if (httpServerPool.length < HTTP_POOL_SIZE) {
|
|
26846
|
+
httpServerPool.push(s);
|
|
26847
|
+
}
|
|
26848
|
+
}
|
|
26849
|
+
function discardHttpServer(_s) {
|
|
26850
|
+
httpServerDiscardCount++;
|
|
26851
|
+
}
|
|
26852
|
+
function invalidateHttpPool() {
|
|
26853
|
+
const count = httpServerPool.length;
|
|
26854
|
+
httpServerPool.length = 0;
|
|
26855
|
+
if (count > 0) {
|
|
26856
|
+
serverLog("http", `Pool invalidated: discarded ${count} cached server(s)`);
|
|
26857
|
+
}
|
|
26858
|
+
}
|
|
25278
26859
|
var server = new McpServer(
|
|
25279
26860
|
{ name: "flywheel-memory", version: pkg.version },
|
|
25280
|
-
{ instructions: generateInstructions(enabledCategories, vaultRegistry) }
|
|
26861
|
+
{ instructions: generateInstructions(enabledCategories, vaultRegistry, getInstructionActiveCategories()) }
|
|
25281
26862
|
);
|
|
25282
26863
|
var _registryCtx = buildRegistryContext();
|
|
25283
|
-
var _gatingResult = applyToolGating(
|
|
26864
|
+
var _gatingResult = applyToolGating(
|
|
26865
|
+
server,
|
|
26866
|
+
enabledCategories,
|
|
26867
|
+
_registryCtx.getStateDb,
|
|
26868
|
+
vaultRegistry,
|
|
26869
|
+
_registryCtx.getVaultPath,
|
|
26870
|
+
buildVaultCallbacks(),
|
|
26871
|
+
toolTierMode,
|
|
26872
|
+
handleTierStateChange
|
|
26873
|
+
);
|
|
25284
26874
|
registerAllTools(server, _registryCtx);
|
|
26875
|
+
_gatingResult.finalizeRegistration();
|
|
26876
|
+
primaryToolTierController = _gatingResult;
|
|
26877
|
+
syncRuntimeTierState(_gatingResult);
|
|
25285
26878
|
var categoryList = Array.from(enabledCategories).sort().join(", ");
|
|
25286
26879
|
serverLog("server", `Tool categories: ${categoryList}`);
|
|
25287
26880
|
serverLog("server", `Registered ${_gatingResult.registered} tools, skipped ${_gatingResult.skipped}`);
|
|
@@ -25310,7 +26903,8 @@ async function initializeVault(name, vaultPathArg) {
|
|
|
25310
26903
|
lastEdgeWeightRebuildAt: 0,
|
|
25311
26904
|
lastEntityScanAt: 0,
|
|
25312
26905
|
lastHubScoreRebuildAt: 0,
|
|
25313
|
-
lastIndexCacheSaveAt: 0
|
|
26906
|
+
lastIndexCacheSaveAt: 0,
|
|
26907
|
+
pipelineActivity: createEmptyPipelineActivity()
|
|
25314
26908
|
};
|
|
25315
26909
|
try {
|
|
25316
26910
|
ctx.stateDb = openStateDb(vaultPathArg);
|
|
@@ -25351,7 +26945,8 @@ function buildVaultScope(ctx) {
|
|
|
25351
26945
|
indexState: ctx.indexState,
|
|
25352
26946
|
indexError: ctx.indexError,
|
|
25353
26947
|
embeddingsBuilding: ctx.embeddingsBuilding,
|
|
25354
|
-
entityEmbeddingsMap: getEntityEmbeddingsMap()
|
|
26948
|
+
entityEmbeddingsMap: getEntityEmbeddingsMap(),
|
|
26949
|
+
pipelineActivity: ctx.pipelineActivity
|
|
25355
26950
|
};
|
|
25356
26951
|
}
|
|
25357
26952
|
function activateVault(ctx) {
|
|
@@ -25398,6 +26993,11 @@ function updateVaultIndex(index) {
|
|
|
25398
26993
|
function updateFlywheelConfig(config) {
|
|
25399
26994
|
flywheelConfig = config;
|
|
25400
26995
|
setWikilinkConfig(config);
|
|
26996
|
+
if (toolTierMode === "tiered" && primaryToolTierController) {
|
|
26997
|
+
primaryToolTierController.setOverride(getConfigToolTierOverride(config));
|
|
26998
|
+
syncRuntimeTierState(primaryToolTierController);
|
|
26999
|
+
invalidateHttpPool();
|
|
27000
|
+
}
|
|
25401
27001
|
const ctx = getActiveVaultContext();
|
|
25402
27002
|
if (ctx) {
|
|
25403
27003
|
ctx.flywheelConfig = config;
|
|
@@ -25525,6 +27125,15 @@ async function main() {
|
|
|
25525
27125
|
stateDb = ctx.stateDb;
|
|
25526
27126
|
activateVault(ctx);
|
|
25527
27127
|
}
|
|
27128
|
+
await initToolRouting();
|
|
27129
|
+
if (stateDb) {
|
|
27130
|
+
try {
|
|
27131
|
+
const vaultName = vaultRegistry?.primaryName ?? "default";
|
|
27132
|
+
const scores = getToolEffectivenessScores(stateDb);
|
|
27133
|
+
loadEffectivenessSnapshot(vaultName, scores);
|
|
27134
|
+
} catch {
|
|
27135
|
+
}
|
|
27136
|
+
}
|
|
25528
27137
|
const transportMode = (process.env.FLYWHEEL_TRANSPORT ?? "stdio").toLowerCase();
|
|
25529
27138
|
if (transportMode === "stdio" || transportMode === "both") {
|
|
25530
27139
|
const transport = new StdioServerTransport();
|
|
@@ -25542,23 +27151,68 @@ async function main() {
|
|
|
25542
27151
|
const httpHost = process.env.FLYWHEEL_HTTP_HOST ?? "127.0.0.1";
|
|
25543
27152
|
const app = createMcpExpressApp({ host: httpHost });
|
|
25544
27153
|
app.post("/mcp", async (req, res) => {
|
|
25545
|
-
const
|
|
27154
|
+
const t0 = performance2.now();
|
|
27155
|
+
const httpServer = acquireHttpServer();
|
|
27156
|
+
const acquireMs = performance2.now() - t0;
|
|
25546
27157
|
const httpTransport = new StreamableHTTPServerTransport({ sessionIdGenerator: void 0 });
|
|
25547
|
-
|
|
25548
|
-
|
|
25549
|
-
|
|
25550
|
-
|
|
25551
|
-
|
|
25552
|
-
|
|
27158
|
+
let cleanExit = false;
|
|
27159
|
+
try {
|
|
27160
|
+
await httpServer.connect(httpTransport);
|
|
27161
|
+
const connectMs = performance2.now() - t0;
|
|
27162
|
+
httpRequestCount++;
|
|
27163
|
+
await httpTransport.handleRequest(req, res, req.body);
|
|
27164
|
+
cleanExit = true;
|
|
27165
|
+
const totalMs = performance2.now() - t0;
|
|
27166
|
+
if (totalMs > 25 || acquireMs > 5 || connectMs - acquireMs > 5) {
|
|
27167
|
+
serverLog("http", `request: acquire=${acquireMs.toFixed(1)}ms connect=${(connectMs - acquireMs).toFixed(1)}ms total=${totalMs.toFixed(1)}ms`);
|
|
27168
|
+
}
|
|
27169
|
+
} catch (err) {
|
|
27170
|
+
serverLog("http", `request error: ${err instanceof Error ? err.message : err}`, "error");
|
|
27171
|
+
} finally {
|
|
27172
|
+
try {
|
|
27173
|
+
await httpTransport.close();
|
|
27174
|
+
} catch {
|
|
27175
|
+
}
|
|
27176
|
+
try {
|
|
27177
|
+
await httpServer.close();
|
|
27178
|
+
} catch {
|
|
27179
|
+
}
|
|
27180
|
+
if (cleanExit) {
|
|
27181
|
+
releaseHttpServer(httpServer);
|
|
27182
|
+
} else {
|
|
27183
|
+
discardHttpServer(httpServer);
|
|
27184
|
+
}
|
|
27185
|
+
}
|
|
25553
27186
|
});
|
|
25554
27187
|
app.get("/health", (_req, res) => {
|
|
25555
|
-
const
|
|
27188
|
+
const mem = process.memoryUsage();
|
|
27189
|
+
const health = {
|
|
27190
|
+
status: "ok",
|
|
27191
|
+
version: pkg.version,
|
|
27192
|
+
vault: vaultPath,
|
|
27193
|
+
ready: serverReady,
|
|
27194
|
+
uptime_s: Math.round(process.uptime()),
|
|
27195
|
+
memory: {
|
|
27196
|
+
rss_mb: Math.round(mem.rss / 1048576),
|
|
27197
|
+
heap_used_mb: Math.round(mem.heapUsed / 1048576),
|
|
27198
|
+
heap_total_mb: Math.round(mem.heapTotal / 1048576),
|
|
27199
|
+
external_mb: Math.round(mem.external / 1048576)
|
|
27200
|
+
},
|
|
27201
|
+
http: {
|
|
27202
|
+
requests: httpRequestCount,
|
|
27203
|
+
pool_available: httpServerPool.length,
|
|
27204
|
+
pool_max: HTTP_POOL_SIZE,
|
|
27205
|
+
servers_created: httpServerCreateCount,
|
|
27206
|
+
servers_reused: httpServerReuseCount,
|
|
27207
|
+
servers_discarded: httpServerDiscardCount
|
|
27208
|
+
}
|
|
27209
|
+
};
|
|
25556
27210
|
if (vaultRegistry?.isMultiVault) {
|
|
25557
27211
|
health.vaults = vaultRegistry.getVaultNames();
|
|
25558
27212
|
}
|
|
25559
27213
|
res.json(health);
|
|
25560
27214
|
});
|
|
25561
|
-
app.listen(httpPort, httpHost, () => {
|
|
27215
|
+
httpListener = app.listen(httpPort, httpHost, () => {
|
|
25562
27216
|
serverLog("server", `HTTP transport on ${httpHost}:${httpPort}`);
|
|
25563
27217
|
});
|
|
25564
27218
|
}
|
|
@@ -25567,6 +27221,59 @@ async function main() {
|
|
|
25567
27221
|
activateVault(primaryCtx);
|
|
25568
27222
|
await bootVault(primaryCtx, startTime);
|
|
25569
27223
|
activateVault(primaryCtx);
|
|
27224
|
+
serverReady = true;
|
|
27225
|
+
const watchdogInterval = parseInt(process.env.FLYWHEEL_WATCHDOG_INTERVAL ?? "0", 10);
|
|
27226
|
+
if (watchdogInterval > 0 && (transportMode === "http" || transportMode === "both")) {
|
|
27227
|
+
let consecutiveFailures = 0;
|
|
27228
|
+
const httpPort = parseInt(process.env.FLYWHEEL_HTTP_PORT ?? "3111", 10);
|
|
27229
|
+
const http = await import("http");
|
|
27230
|
+
watchdogTimer = setInterval(() => {
|
|
27231
|
+
if (shutdownRequested) return;
|
|
27232
|
+
const req = http.get(`http://127.0.0.1:${httpPort}/health`, { timeout: 5e3 }, (res) => {
|
|
27233
|
+
let body = "";
|
|
27234
|
+
res.on("data", (chunk) => {
|
|
27235
|
+
body += chunk;
|
|
27236
|
+
});
|
|
27237
|
+
res.on("end", () => {
|
|
27238
|
+
try {
|
|
27239
|
+
const parsed = JSON.parse(body);
|
|
27240
|
+
if (res.statusCode === 200 && parsed.status === "ok" && parsed.ready === true) {
|
|
27241
|
+
consecutiveFailures = 0;
|
|
27242
|
+
} else {
|
|
27243
|
+
consecutiveFailures++;
|
|
27244
|
+
serverLog("watchdog", `Health check degraded (${consecutiveFailures}/3): status=${parsed.status} ready=${parsed.ready}`, "warn");
|
|
27245
|
+
}
|
|
27246
|
+
} catch {
|
|
27247
|
+
consecutiveFailures++;
|
|
27248
|
+
serverLog("watchdog", `Health check parse error (${consecutiveFailures}/3)`, "warn");
|
|
27249
|
+
}
|
|
27250
|
+
if (consecutiveFailures >= 3) {
|
|
27251
|
+
serverLog("watchdog", `3 consecutive health check failures \u2014 exiting for systemd restart`, "error");
|
|
27252
|
+
process.exit(1);
|
|
27253
|
+
}
|
|
27254
|
+
});
|
|
27255
|
+
});
|
|
27256
|
+
req.on("error", () => {
|
|
27257
|
+
consecutiveFailures++;
|
|
27258
|
+
serverLog("watchdog", `Health check failed (${consecutiveFailures}/3): request error`, "warn");
|
|
27259
|
+
if (consecutiveFailures >= 3) {
|
|
27260
|
+
serverLog("watchdog", `3 consecutive health check failures \u2014 exiting for systemd restart`, "error");
|
|
27261
|
+
process.exit(1);
|
|
27262
|
+
}
|
|
27263
|
+
});
|
|
27264
|
+
req.on("timeout", () => {
|
|
27265
|
+
req.destroy();
|
|
27266
|
+
consecutiveFailures++;
|
|
27267
|
+
serverLog("watchdog", `Health check timeout (${consecutiveFailures}/3)`, "warn");
|
|
27268
|
+
if (consecutiveFailures >= 3) {
|
|
27269
|
+
serverLog("watchdog", `3 consecutive health check failures \u2014 exiting for systemd restart`, "error");
|
|
27270
|
+
process.exit(1);
|
|
27271
|
+
}
|
|
27272
|
+
});
|
|
27273
|
+
}, watchdogInterval);
|
|
27274
|
+
watchdogTimer.unref();
|
|
27275
|
+
serverLog("watchdog", `Self-ping watchdog started (interval=${watchdogInterval}ms)`);
|
|
27276
|
+
}
|
|
25570
27277
|
if (vaultConfigs && vaultConfigs.length > 1) {
|
|
25571
27278
|
const secondaryConfigs = vaultConfigs.slice(1);
|
|
25572
27279
|
(async () => {
|
|
@@ -25574,6 +27281,7 @@ async function main() {
|
|
|
25574
27281
|
try {
|
|
25575
27282
|
const ctx = await initializeVault(vc.name, vc.path);
|
|
25576
27283
|
vaultRegistry.addContext(ctx);
|
|
27284
|
+
invalidateHttpPool();
|
|
25577
27285
|
loadVaultCooccurrence(ctx);
|
|
25578
27286
|
activateVault(ctx);
|
|
25579
27287
|
await bootVault(ctx, startTime);
|
|
@@ -25640,6 +27348,14 @@ function runPeriodicMaintenance(db4) {
|
|
|
25640
27348
|
sweepExpiredMemories(db4);
|
|
25641
27349
|
decayMemoryConfidence(db4);
|
|
25642
27350
|
pruneSupersededMemories(db4, 90);
|
|
27351
|
+
try {
|
|
27352
|
+
const vaultName = getActiveScopeOrNull()?.name;
|
|
27353
|
+
if (vaultName) {
|
|
27354
|
+
const scores = getToolEffectivenessScores(db4);
|
|
27355
|
+
loadEffectivenessSnapshot(vaultName, scores);
|
|
27356
|
+
}
|
|
27357
|
+
} catch {
|
|
27358
|
+
}
|
|
25643
27359
|
const now = Date.now();
|
|
25644
27360
|
if (now - lastPurgeAt > 24 * 60 * 60 * 1e3) {
|
|
25645
27361
|
purgeOldMetrics(db4, 90);
|
|
@@ -25733,6 +27449,21 @@ async function runPostIndexWork(ctx) {
|
|
|
25733
27449
|
if (hasIndex && !modelChanged && !versionChanged) {
|
|
25734
27450
|
serverLog("semantic", "Embeddings up-to-date, skipping build");
|
|
25735
27451
|
loadEntityEmbeddingsToMemory();
|
|
27452
|
+
if (sd) {
|
|
27453
|
+
const entities = getAllEntitiesFromDb6(sd);
|
|
27454
|
+
if (entities.length > 0) {
|
|
27455
|
+
saveInferredCategories(classifyUncategorizedEntities(
|
|
27456
|
+
entities.map((entity) => ({
|
|
27457
|
+
entity: {
|
|
27458
|
+
name: entity.name,
|
|
27459
|
+
path: entity.path,
|
|
27460
|
+
aliases: entity.aliases
|
|
27461
|
+
},
|
|
27462
|
+
category: entity.category
|
|
27463
|
+
}))
|
|
27464
|
+
));
|
|
27465
|
+
}
|
|
27466
|
+
}
|
|
25736
27467
|
} else {
|
|
25737
27468
|
if (modelChanged) {
|
|
25738
27469
|
serverLog("semantic", `Model changed ${storedModel} \u2192 ${getActiveModelId()}, clearing`);
|
|
@@ -25770,6 +27501,21 @@ async function runPostIndexWork(ctx) {
|
|
|
25770
27501
|
}
|
|
25771
27502
|
activateVault(ctx);
|
|
25772
27503
|
loadEntityEmbeddingsToMemory();
|
|
27504
|
+
if (sd) {
|
|
27505
|
+
const entities = getAllEntitiesFromDb6(sd);
|
|
27506
|
+
if (entities.length > 0) {
|
|
27507
|
+
saveInferredCategories(classifyUncategorizedEntities(
|
|
27508
|
+
entities.map((entity) => ({
|
|
27509
|
+
entity: {
|
|
27510
|
+
name: entity.name,
|
|
27511
|
+
path: entity.path,
|
|
27512
|
+
aliases: entity.aliases
|
|
27513
|
+
},
|
|
27514
|
+
category: entity.category
|
|
27515
|
+
}))
|
|
27516
|
+
));
|
|
27517
|
+
}
|
|
27518
|
+
}
|
|
25773
27519
|
setEmbeddingsBuildState("complete");
|
|
25774
27520
|
serverLog("semantic", "Embeddings ready \u2014 searches now use hybrid ranking");
|
|
25775
27521
|
} catch (err) {
|
|
@@ -26030,7 +27776,10 @@ if (process.argv.includes("--init-semantic")) {
|
|
|
26030
27776
|
});
|
|
26031
27777
|
}
|
|
26032
27778
|
function gracefulShutdown(signal) {
|
|
27779
|
+
shutdownRequested = true;
|
|
26033
27780
|
console.error(`[Memory] Received ${signal}, shutting down...`);
|
|
27781
|
+
if (watchdogTimer) clearInterval(watchdogTimer);
|
|
27782
|
+
if (httpListener) httpListener.close();
|
|
26034
27783
|
try {
|
|
26035
27784
|
watcherInstance?.stop();
|
|
26036
27785
|
} catch {
|
|
@@ -26047,5 +27796,6 @@ process.on("beforeExit", async () => {
|
|
|
26047
27796
|
await flushLogs();
|
|
26048
27797
|
});
|
|
26049
27798
|
export {
|
|
26050
|
-
getWatcherStatus
|
|
27799
|
+
getWatcherStatus,
|
|
27800
|
+
invalidateHttpPool
|
|
26051
27801
|
};
|