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

Class PaperWithScore

deployments/feishu/daily-push-agent/main.py:487–496  ·  view source on GitHub ↗

带分数的论文

Source from the content-addressed store, hash-verified

485
486@dataclass
487class PaperWithScore:
488 """带分数的论文"""
489 paper: Dict
490 score: float
491 category: str # must_read, high_relevant, maybe_interested, edge_relevant
492 relevance_signal: float = 0.0
493 drift_bonus: float = 0.0
494 drift_topics: Optional[List[str]] = None
495 reading_signal_bonus: float = 0.0
496 reading_signal_topics: Optional[List[str]] = None
497
498
499def _hard_priority_tuple(paper_with_score: PaperWithScore) -> tuple:

Callers 2

sort_and_categorizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected