Resolved 4 conflicts: cli.py (R-D citing-coverage warning + main's small-corpus JSON/hub-title changes both kept); ingest.py (C-7 paper.id=caller-id pin first, then DQ-2 abstract recovery); test_ingest.py + test_openalex.py (kept both branches' tests). C-7/DQ-5 overlap (both canonicalise papers.id): kept both layers — openalex._canonical_id normalizes fetch_paper's id (DQ-5); ingest pins papers.id to the caller's bare id (C-7); they converge on the bare canonical id. Fixed the auto-merged test_fetch_paper_success that had contradictory bare/URL assertions. 402 tests pass; ruff + mypy clean. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
158 lines
5.0 KiB
Python
158 lines
5.0 KiB
Python
"""Semantic Scholar API client.
|
|
|
|
Provides:
|
|
- fetch_references: retrieve references for a paper as Citation dataclasses.
|
|
- fetch_recommendations: retrieve recommended paper IDs.
|
|
|
|
Rate-limited to ≤1 req/s (per-request floor via monotonic clock).
|
|
Retried on 429/5xx with exponential back-off via tenacity.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
import threading
|
|
import time
|
|
from typing import Any
|
|
from urllib.parse import quote
|
|
|
|
import httpx
|
|
from tenacity import retry, retry_if_exception, stop_after_attempt, wait_exponential
|
|
|
|
from codex.models import Citation
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
_BASE_GRAPH = "https://api.semanticscholar.org/graph/v1"
|
|
_BASE_RECS = "https://api.semanticscholar.org/recommendations/v1"
|
|
|
|
# Per-request rate limit: ≤1 req/s without an API key.
|
|
_rate_lock = threading.Lock()
|
|
_last_request_time: float = 0.0
|
|
_MIN_INTERVAL = 1.0
|
|
|
|
|
|
def _rate_limit() -> None:
|
|
global _last_request_time
|
|
with _rate_lock:
|
|
now = time.monotonic()
|
|
wait = _MIN_INTERVAL - (now - _last_request_time)
|
|
if wait > 0:
|
|
time.sleep(wait)
|
|
_last_request_time = time.monotonic()
|
|
|
|
|
|
def _is_retryable(exc: BaseException) -> bool:
|
|
if isinstance(exc, httpx.HTTPStatusError):
|
|
return exc.response.status_code == 429 or exc.response.status_code >= 500
|
|
return False
|
|
|
|
|
|
@retry(
|
|
retry=retry_if_exception(_is_retryable),
|
|
stop=stop_after_attempt(5),
|
|
wait=wait_exponential(min=1, max=30),
|
|
before_sleep=lambda rs: logger.warning(
|
|
"SemanticScholar retry %d after %s",
|
|
rs.attempt_number,
|
|
rs.outcome.exception(), # type: ignore[union-attr]
|
|
),
|
|
)
|
|
def _get(url: str, params: dict[str, Any] | None = None) -> httpx.Response:
|
|
_rate_limit()
|
|
response = httpx.get(url, params=params, timeout=30)
|
|
response.raise_for_status()
|
|
return response
|
|
|
|
|
|
def fetch_references(paper_id: str) -> list[Citation]:
|
|
"""Fetch references for a paper from Semantic Scholar.
|
|
|
|
Parameters
|
|
----------
|
|
paper_id:
|
|
Semantic Scholar paper ID (or ``arXiv:…`` / ``DOI:…`` prefixed ID).
|
|
|
|
Returns
|
|
-------
|
|
list[Citation]
|
|
One Citation per reference, with optional context snippet.
|
|
"""
|
|
# quote the id so a legacy-arXiv "/" (e.g. arXiv:math/0603097) doesn't break
|
|
# the URL path; keep ":" for the arXiv:/DOI: scheme prefix (audit R-5).
|
|
url = f"{_BASE_GRAPH}/paper/{quote(paper_id, safe=':')}/references"
|
|
params: dict[str, Any] = {"fields": "externalIds,contexts"}
|
|
try:
|
|
response = _get(url, params=params)
|
|
except httpx.HTTPStatusError as exc:
|
|
if exc.response.status_code == 404:
|
|
return []
|
|
raise
|
|
|
|
data = response.json()
|
|
# S2 returns HTTP 200 with ``{"data": null}`` for a known paper that has no
|
|
# parsed reference list (e.g. some theses). ``.get("data", [])`` would yield
|
|
# the explicit ``None`` (the default only applies when the key is absent),
|
|
# so iterate over a guaranteed list instead.
|
|
raw_refs: list[dict[str, Any]] = data.get("data") or []
|
|
citations: list[Citation] = []
|
|
for entry in raw_refs:
|
|
cited_paper: dict[str, Any] = entry.get("citedPaper", {})
|
|
external_ids: dict[str, str] = cited_paper.get("externalIds") or {}
|
|
contexts: list[str] = entry.get("contexts", [])
|
|
context: str | None = contexts[0] if contexts else None
|
|
|
|
cited_id: str = (
|
|
external_ids.get("DOI") or external_ids.get("ArXiv") or cited_paper.get("paperId") or ""
|
|
)
|
|
if cited_id:
|
|
citations.append(Citation(citing_id=paper_id, cited_id=cited_id, context=context))
|
|
return citations
|
|
|
|
|
|
def fetch_abstract(paper_id: str) -> str | None:
|
|
"""Fetch just the abstract for a paper from Semantic Scholar.
|
|
|
|
Used as an ingest abstract supplement (DQ-2) when OpenAlex has the paper
|
|
but no abstract. ``paper_id`` should be namespaced (``arXiv:…`` / ``DOI:…``).
|
|
Returns None on 404 or when S2 has no abstract.
|
|
"""
|
|
url = f"{_BASE_GRAPH}/paper/{paper_id}"
|
|
try:
|
|
response = _get(url, params={"fields": "abstract"})
|
|
except httpx.HTTPStatusError as exc:
|
|
if exc.response.status_code == 404:
|
|
return None
|
|
raise
|
|
abstract = response.json().get("abstract")
|
|
return abstract or None
|
|
|
|
|
|
def fetch_recommendations(paper_id: str, limit: int = 20) -> list[str]:
|
|
"""Fetch recommended paper IDs from Semantic Scholar.
|
|
|
|
Parameters
|
|
----------
|
|
paper_id:
|
|
Semantic Scholar paper ID.
|
|
limit:
|
|
Maximum number of recommendations to return.
|
|
|
|
Returns
|
|
-------
|
|
list[str]
|
|
List of recommended paper IDs.
|
|
"""
|
|
url = f"{_BASE_RECS}/papers/forpaper/{quote(paper_id, safe=':')}"
|
|
params: dict[str, Any] = {"limit": limit}
|
|
try:
|
|
response = _get(url, params=params)
|
|
except httpx.HTTPStatusError as exc:
|
|
if exc.response.status_code == 404:
|
|
return []
|
|
raise
|
|
|
|
data = response.json()
|
|
recommended: list[dict[str, Any]] = data.get("recommendedPapers", [])
|
|
return [p["paperId"] for p in recommended if p.get("paperId")]
|