This commit is contained in:
张成
2026-04-16 14:01:52 +08:00
parent 7ef0c68ad1
commit df0aacc782
10 changed files with 531 additions and 22 deletions

View File

@@ -172,7 +172,7 @@ class KeywordMatcher {
if (filterKeywords.length > 0 && !filterResult.matched) {
return {
pass: false,
reason: '不包含任何必需关键词',
reason: `未命中包含关键词: ${filterKeywords.join(', ')}`,
score: 0,
details: { filter: filterResult }
};
@@ -204,7 +204,7 @@ class KeywordMatcher {
return [];
}
const textExtractor=(job) => `${job.jobTitle || ''} ${job.companyIndustry || ''}`;
const textExtractor=(job) => `${job.jobTitle || ''}`;
const filtered = [];