fix(memory-wiki): satisfy CI guard checks

This commit is contained in:
Vincent Koc
2026-04-29 12:26:03 -07:00
parent 9af0a7153e
commit e1c97cb24d
2 changed files with 6 additions and 0 deletions

View File

@@ -12,11 +12,15 @@ function createPage(params: {
relativePath: params.relativePath,
kind: "entity",
title: params.title,
aliases: [],
sourceIds: [],
linkTargets: [],
claims: [],
contradictions: params.contradictions,
questions: [],
relationships: [],
bestUsedFor: [],
notEnoughFor: [],
};
}

View File

@@ -569,6 +569,7 @@ function scorePageSearchModeBoost(params: {
case "raw-claim":
return params.matchingClaims.length > 0 ? 42 : 0;
}
return 0;
}
function scoreDigestSearchModeBoost(params: {
@@ -648,6 +649,7 @@ function scoreDigestSearchModeBoost(params: {
case "raw-claim":
return params.matchingClaims.length > 0 ? 42 : 0;
}
return 0;
}
function buildDigestCandidatePaths(params: {