Initial commit

This commit is contained in:
Kizuren 2025-11-23 23:51:28 +01:00
commit 85eb12a22d
1397 changed files with 173048 additions and 0 deletions

View file

@ -0,0 +1,13 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.demoteByEngagements = void 0;
/**
* Re-rank candidates by demoting candidates based on engagement events.
* @param candidates Recommendable entities
* @param engagementEvents Recorded engagement events
* @returns Reordered candidates
*/
function demoteByEngagements(candidates, _engagementEvents) {
return [...candidates];
}
exports.demoteByEngagements = demoteByEngagements;