Added support for new faceai parameters
All checks were successful
Publish FaceAI Container / publish (push) Successful in 9m39s

This commit is contained in:
MaddoScientisto 2026-05-09 14:46:44 +02:00
commit a026fec62b
12 changed files with 152 additions and 13 deletions

View file

@ -34,6 +34,9 @@ async function ensureMatcherBinaryAvailable() {
}
console.log(`FaceAI processor configured matcher binary: ${config.matcherBinary}`);
if (config.matcherTolerance !== null) {
console.log(`FaceAI processor configured matcher tolerance: ${config.matcherTolerance}`);
}
async function publishProcessorHeartbeat() {
try {
@ -138,6 +141,7 @@ async function processJob(job) {
await appendSearchLog(searchLogPath, 'Running matcher', {
matcherBinary: config.matcherBinary,
matcherTolerance: config.matcherTolerance,
csvPath,
matcherLogPath: logPath,
timeoutMs: config.workerTimeoutMs
@ -146,6 +150,7 @@ async function processJob(job) {
try {
await runFaceMatcher({
matcherBinary: config.matcherBinary,
matcherTolerance: config.matcherTolerance,
selfiePath: search.selfiePath,
pklPath,
csvPath,