0a9ff16dfc
v3 rewrites the search engine from the ground up: - Intelligent pre-research: resolves X handles, GitHub repos, subreddits, TikTok hashtags, and YouTube channels before searching - GitHub person-mode: PR velocity, top repos by stars, release notes - GitHub project-mode: live star counts, README, releases, top issues - ELI5 mode: plain language synthesis, no jargon - 13+ sources: Reddit, X, YouTube, TikTok, Instagram, HN, Polymarket, GitHub, Threads, Pinterest, Perplexity, Bluesky, Web - Free Reddit comments via public JSON (no API key needed) - Fun judge v2: humor scoring baked into narrative - Cookie consent before browser scanning - 10,000 free ScrapeCreators calls - 1,012 tests Thank you to the community contributors whose issues and PRs shaped v3: @uppinote20 (#143), @zerone0x (#134, #136), @thinkun (#116), @thomasmktong (#124), @fanispoulinakisai-boop (#100), @pejmanjohn (#78), @zl190 (#115), @hnshah (#84, #85, #86) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
100 lines
2.4 KiB
Python
100 lines
2.4 KiB
Python
"""Within-source near-duplicate detection."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import re
|
|
|
|
from . import schema
|
|
|
|
STOPWORDS = frozenset(
|
|
{
|
|
"the",
|
|
"a",
|
|
"an",
|
|
"to",
|
|
"for",
|
|
"how",
|
|
"is",
|
|
"in",
|
|
"of",
|
|
"on",
|
|
"and",
|
|
"with",
|
|
"from",
|
|
"by",
|
|
"at",
|
|
"this",
|
|
"that",
|
|
"it",
|
|
"what",
|
|
"are",
|
|
"do",
|
|
"can",
|
|
}
|
|
)
|
|
|
|
|
|
def normalize_text(text: str) -> str:
|
|
text = re.sub(r"[^\w\s]", " ", text.lower())
|
|
return re.sub(r"\s+", " ", text).strip()
|
|
|
|
|
|
def get_ngrams(text: str, n: int = 3) -> set[str]:
|
|
text = normalize_text(text)
|
|
if len(text) < n:
|
|
return {text} if text else set()
|
|
return {text[index:index + n] for index in range(len(text) - n + 1)}
|
|
|
|
|
|
def jaccard_similarity(left: set[str], right: set[str]) -> float:
|
|
if not left or not right:
|
|
return 0.0
|
|
union = left | right
|
|
if not union:
|
|
return 0.0
|
|
return len(left & right) / len(union)
|
|
|
|
|
|
def token_jaccard(text_a: str, text_b: str) -> float:
|
|
tokens_a = {
|
|
token
|
|
for token in normalize_text(text_a).split()
|
|
if len(token) > 1 and token not in STOPWORDS
|
|
}
|
|
tokens_b = {
|
|
token
|
|
for token in normalize_text(text_b).split()
|
|
if len(token) > 1 and token not in STOPWORDS
|
|
}
|
|
return jaccard_similarity(tokens_a, tokens_b)
|
|
|
|
|
|
def hybrid_similarity(text_a: str, text_b: str) -> float:
|
|
return max(
|
|
jaccard_similarity(get_ngrams(text_a), get_ngrams(text_b)),
|
|
token_jaccard(text_a, text_b),
|
|
)
|
|
|
|
|
|
def item_text(item: schema.SourceItem) -> str:
|
|
parts = [item.title, item.body, item.author or "", item.container or ""]
|
|
return " ".join(part for part in parts if part).strip()
|
|
|
|
|
|
def dedupe_items(items: list[schema.SourceItem], threshold: float = 0.7) -> list[schema.SourceItem]:
|
|
"""Remove near-duplicates while keeping earlier, better-scored items."""
|
|
kept: list[schema.SourceItem] = []
|
|
for item in items:
|
|
text = item_text(item)
|
|
if not text:
|
|
kept.append(item)
|
|
continue
|
|
is_duplicate = False
|
|
for existing in kept:
|
|
if hybrid_similarity(text, item_text(existing)) >= threshold:
|
|
is_duplicate = True
|
|
break
|
|
if not is_duplicate:
|
|
kept.append(item)
|
|
return kept
|