chore: initial import

This commit is contained in:
minhducdz99
2025-11-05 18:03:41 +07:00
commit dce325141e
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;