MCPcopy Create free account
hub / github.com/OpenRaiser/PaperFlow / is_must_read

Function is_must_read

skills/profile-updater/scripts/update_profile.py:1230–1235  ·  view source on GitHub ↗

Check if a paper matches the must-read list.

(paper: Dict, profile: Dict)

Source from the content-addressed store, hash-verified

1228
1229
1230def is_must_read(paper: Dict, profile: Dict) -> bool:
1231 """
1232 Check if a paper matches the must-read list.
1233 """
1234 matches = get_must_read_matches(paper, profile)
1235 return any(matches.values())
1236
1237
1238def detect_new_topics(

Callers 5

match_paper_to_userFunction · 0.85
categorize_paperFunction · 0.85
calculate_paper_scoreFunction · 0.85

Calls 1

get_must_read_matchesFunction · 0.85

Tested by

no test coverage detected