Update the README & news system to NOT match news from the same org 🤦‍♂️

This commit is contained in:
yuanhau 2025-06-09 22:24:56 +08:00
parent 6f759cb612
commit 629d033702
2 changed files with 7 additions and 1 deletions

View file

@ -182,7 +182,7 @@ const useArgFindRel = (title, newsOrg) => {
if (
item.title !== title &&
item.contentType === "GENERAL" &&
item.publisher === newsOrg
item.publisher !== newsOrg
) {
const itemVector = tf(item.title);
const similarity = jaccardSimilarity(targetVector, itemVector);