File size: 29,226 Bytes
406a5e6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 | """PFB-MAX router: one LLM classification call + channel dispatch.
Contract:
def solve(query: str, client, llm: LLM, inserted_before: str | None) -> Submission
Routes by LLM classification (semantic | specific | metadata), NEVER by query id.
Design (IRIS-proven; ported from iris_asta/iris_asta/solvers/pfb.py):
* ONE json_mode LLM call classifies the query into
{"route": "semantic" | "specific" | "metadata"}; any parse failure or
invalid label -> "semantic" (the judged channel degrades gracefully; a
wrong deterministic plan returns a confidently wrong set).
* Deterministic guard (IRIS v2 forensics; one such misroute alone cost
0.250 -> 0.022): a "metadata" label on relevance-phrased queries
("find papers relevant/related to ...") is a CONTENT ask and is forced
back to "semantic", date constraints or not.
* Dispatch: semantic -> semantic_retrieval.build_pool +
semantic_judge.rank_and_emit; specific -> specific_solver.solve_specific;
metadata -> metadata_solver.solve_metadata.
* No-empty-fallback (IRIS lesson): any exception OR empty result from a
deterministic channel falls back to the semantic channel; total failure
returns [] (never raises).
* Graceful degradation: sibling modules may not have landed yet. Missing
ones are reported ONCE on stderr and replaced by minimal built-in stubs
(semantic: one snippet_search + one paper_search fusion with verbatim
evidence; specific: single title-resolve emit; metadata: empty -> the
semantic fallback fires), so this file runs today and improves as
siblings land.
Integrity: logic keys on query text + general rules only; no
gold corpus ids, no per-query branching; all emitted evidence is verbatim
corpus text (title/snippet/abstract windows). Stdlib only.
"""
from __future__ import annotations
import importlib
import os
import re
import sys
Submission = list[tuple[str, str]]
#: Scorer reads at most 250 results (MAX_RESULTS_TO_CONSIDER in the harness).
MAX_RESULTS = 250
# Sibling modules live flat in this directory; make `import semantic_retrieval`
# et al. work no matter where the process was started from.
_PFBMAX_DIR = os.path.dirname(os.path.abspath(__file__))
if _PFBMAX_DIR not in sys.path:
sys.path.insert(0, _PFBMAX_DIR)
# Marker tokens embedded in each stage's system prompt: inert for the real
# LLM, but they let offline fakes route canned replies per stage without
# depending on call order (IRIS pattern).
ROUTE_MARKER = "[pfbmax:route]"
CRITERIA_MARKER = "[pfbmax:criteria]"
_VALID_ROUTES = ("semantic", "specific", "metadata")
#: IRIS's proven guard (pfb.py `_RELEVANCE_PHRASING_RE`): topical-relevance
#: phrasing that must NEVER enter the metadata channel. "find papers
#: relevant/related to ..." describes wanted papers by CONTENT (a
#: judged-evidence ask) even when date constraints ride along.
_RELEVANCE_PHRASING_RE = re.compile(
r"\b(?:papers?|articles?|works?|studies|publications?|literature)\s+"
r"(?:relevant|related)\s+to\b",
re.IGNORECASE,
)
#: A DATE BOUND ALONE NEVER PINS DOWN AN ANSWER SET. The routing rule already
#: says to pick "metadata" only when the structured constraints by themselves
#: determine the wanted papers, but the model reads any explicit year as a
#: structured constraint. Measured: "Adaptive query expansion with LLMs,
#: focusing on papers published on or after 2023" routed to metadata in 24 of
#: 24 runs and scored 0.0219 instead of the ~0.20 semantic average -- the
#: metadata channel emitted 8 results for a topical question.
#: So: if the ONLY structured cue is a date, the query is semantic. Cues that
#: genuinely discriminate (authors, venues, citation relations, counts,
#: publication types) still route to metadata.
_DISCRIMINATING_META_RE = re.compile(
r"(?:\bauthors?\b|\bauthored\b|\bco-?authored\b|\bby\s+(?-i:[A-Z])|\bvenue\b|\bconference\b|\bjournal\b|\bproceedings\b|\bworkshop\b|(?-i:\b[A-Z]{2,}\b)|\bcit(?:e|es|ed|ing|ation|ations)\b|\breferences?\b|\bmore\s+than\s+\d+|\bat\s+least\s+\d+|\bfewer\s+than\s+\d+|\bover\s+\d+)",
re.IGNORECASE,
)
#: Date/year phrasing. The guard above fires ONLY when a date cue is the SOLE
#: structured cue -- a query with neither kind of cue is left to the model's
#: label, so this cannot change routing for queries it was not written for.
_DATE_CUE_RE = re.compile(
r"(?:\b(?:since|after|before|during|between|from)\s+(?:19|20)\d{2}\b|\b(?:19|20)\d{2}\b|\bpublished\s+(?:on\s+or\s+)?(?:after|before|since)\b|\blast\s+\d+\s+years?\b|\brecent\s+(?:years?|work|papers?)\b)",
re.IGNORECASE,
)
# ---------------------------------------------------------------------------
# Prompts (IRIS-proven routing prompt, answer key renamed to "route")
# ---------------------------------------------------------------------------
ROUTE_SYSTEM = f"""You route queries for a scientific paper-finding system. {ROUTE_MARKER}
Classify the query into exactly one category:
- "specific": the query asks for ONE particular known paper, referred to by \
(approximate) name or an unmistakable description of a single paper. \
Examples: "the BERT paper"; "find 'Attention Is All You Need'"; \
"the paper that introduced residual networks".
- "metadata": the wanted set is defined by structured constraints -- venue, \
publication year(s), author names, citation count, or citation relations \
(papers citing X / cited by X / NOT citing Y), possibly nested or negated. \
Examples: "NeurIPS 2021 papers by Kaiming He"; "papers since 2019 citing \
'Attention Is All You Need' but not 'BERT' with over 100 citations".
- "semantic": the wanted papers are described by their CONTENT/topic/findings \
in natural language. Examples: "papers showing retrieval augmentation reduces \
hallucination in QA"; "work on protein folding with diffusion models".
If constraints and content BOTH appear, choose "metadata" only when the \
structured constraints alone pin down the answer set; otherwise "semantic".
Respond with JSON only: {{"route": "specific" | "metadata" | "semantic"}}"""
CRITERIA_SYSTEM = f"""You decompose a scientific paper-finding query into relevance criteria. {CRITERIA_MARKER}
List the INDEPENDENT requirements a paper must EACH satisfy to be PERFECTLY
relevant to the query -- topic, method, finding, setting, population, etc.
Each criterion must be a single, independently checkable statement about the
paper. Use between 1 and 6 criteria; fewer, sharper criteria are better.
Respond with JSON only: {{"criteria": ["...", "..."]}}"""
# ---------------------------------------------------------------------------
# Classification
# ---------------------------------------------------------------------------
def classify(query: str, llm) -> str:
"""One LLM json call -> "semantic" | "specific" | "metadata".
Safe default "semantic" on: llm exception, non-dict reply, missing or
invalid label. Deterministic guard: label "metadata" + relevance
phrasing in the query -> "semantic" (applied to the RAW label, before
validity, exactly as IRIS does).
"""
try:
obj = llm.json(ROUTE_SYSTEM, query, max_tokens=64) or {}
except Exception:
obj = {}
if not isinstance(obj, dict):
obj = {}
label = str(obj.get("route") or obj.get("category") or "").strip().lower()
if label == "metadata" and _RELEVANCE_PHRASING_RE.search(query or ""):
return "semantic"
# Date-only "constraints" do not define an answer set -- see
# _DISCRIMINATING_META_RE. Without a genuinely discriminating cue, a
# metadata verdict is a misroute and costs the whole query.
if (label == "metadata"
and _DATE_CUE_RE.search(query or "")
and not _DISCRIMINATING_META_RE.search(query or "")):
return "semantic"
if label in _VALID_ROUTES:
return label
return "semantic"
def derive_criteria(query: str, llm) -> list[str]:
"""Per-query relevance criteria (1-6 strings; fallback: the query itself).
The semantic channel contract (build_pool / rank_and_emit) consumes
criteria; the router derives them once from the query text (IRIS
`_derive_criteria` port) and shares them across both stages.
"""
try:
obj = llm.json(CRITERIA_SYSTEM, query, max_tokens=400) or {}
except Exception:
obj = {}
raw = obj.get("criteria") if isinstance(obj, dict) else None
criteria: list[str] = []
if isinstance(raw, list):
for item in raw:
if isinstance(item, str) and item.strip():
criteria.append(item.strip())
if len(criteria) >= 6:
break
return criteria or [(query or "").strip() or "relevant to the query"]
# ---------------------------------------------------------------------------
# Sibling imports (graceful degradation)
# ---------------------------------------------------------------------------
_SIB_CACHE: dict[str, object] = {}
_REPORTED: set[str] = set()
def _report_once(key: str, msg: str) -> None:
if key not in _REPORTED:
_REPORTED.add(key)
print(msg, file=sys.stderr, flush=True)
def _sib(name: str):
"""Import sibling pfbmax module ``name`` (flat layout); None if absent.
A sibling that exists but fails to import is reported once and treated
as absent (the stub keeps the pipeline alive). Tests monkeypatch this
function to control dispatch.
"""
if name in _SIB_CACHE:
return _SIB_CACHE[name]
try:
mod = importlib.import_module(name)
except ImportError:
mod = None
except Exception as exc:
_report_once(
f"broken:{name}",
f"[pfbmax.router] sibling {name}.py failed to import ({exc!r}) "
"-- treating as absent (stub behavior)",
)
mod = None
_SIB_CACHE[name] = mod
return mod
# ---------------------------------------------------------------------------
# Small helpers
# ---------------------------------------------------------------------------
def _norm_cid(cid) -> str | None:
"""Digits-only corpus id, or None (non-normalizable ids can never match
gold and would only waste ranked slots -- IRIS `_cid_of` lesson)."""
s = str(cid if cid is not None else "").strip()
if s.lower().startswith("corpusid:"):
s = s[len("corpusid:"):].strip()
return s if s.isdigit() else None
def _finalize(results) -> Submission:
"""Dedupe by corpus id (first occurrence wins = best rank), normalize,
coerce evidence to str, cap at the scorer's 250."""
out: Submission = []
seen: set[str] = set()
for item in results or []:
try:
cid, ev = item[0], item[1]
except Exception:
continue
c = _norm_cid(cid)
if c is None or c in seen:
continue
seen.add(c)
out.append((c, str(ev) if ev is not None else ""))
if len(out) >= MAX_RESULTS:
break
return out
def _violates_cutoff(paper, inserted_before) -> bool:
"""True when the paper is provably outside the corpus snapshot (IRIS
`_violates_cutoff` port): year strictly greater than the cutoff year.
Same-year papers are kept (the snapshot may cut mid-year)."""
if not inserted_before:
return False
try:
cutoff_year = int(str(inserted_before)[:4])
except (TypeError, ValueError):
return False
year = getattr(paper, "year", None)
return isinstance(year, int) and year > cutoff_year
def _paper_evidence(paper) -> str:
"""Markdown evidence for a paper: title/year + verbatim abstract lead-in."""
title = getattr(paper, "title", "") or "(untitled)"
year = getattr(paper, "year", None)
abstract = (getattr(paper, "abstract", "") or "")[:400]
head = f"**{title}**" + (f" ({year})" if isinstance(year, int) else "")
return (head + ("\n" + abstract if abstract else "")).strip()
# ---------------------------------------------------------------------------
# Built-in stub channels (fire ONLY while sibling modules are absent)
# ---------------------------------------------------------------------------
def _fallback_semantic(query: str, client, llm, inserted_before) -> Submission:
"""Degraded semantic channel: one snippet_search + one paper_search,
snippet hits first (relevance-ranked), verbatim evidence windows."""
out: Submission = []
seen: set[str] = set()
try:
snippets = client.snippet_search(
query, limit=100, inserted_before=inserted_before
)
except Exception:
snippets = []
for sn in snippets or []:
cid = _norm_cid(getattr(sn, "corpus_id", None))
if cid is None or cid in seen:
continue
seen.add(cid)
title = getattr(sn, "title", "") or ""
text = (getattr(sn, "text", "") or "")[:600]
ev = (f"**{title}**\n{text}").strip() if title else text
out.append((cid, ev))
try:
papers = client.paper_search(
query, limit=100, publication_date_before=inserted_before
)
except Exception:
papers = []
for p in papers or []:
cid = _norm_cid(getattr(p, "corpus_id", None))
if cid is None or cid in seen or _violates_cutoff(p, inserted_before):
continue
seen.add(cid)
out.append((cid, _paper_evidence(p)))
return out[:MAX_RESULTS]
def _fallback_specific(query: str, client, llm, inserted_before) -> Submission:
"""Degraded specific channel: single title-resolve emit (every extra
result halves precision on 1-gold navigational queries -- IRIS lesson).
Empty on a miss; the caller's semantic fallback takes over."""
try:
paper = client.search_paper_by_title(query)
except Exception:
paper = None
if paper is None or _violates_cutoff(paper, inserted_before):
return []
cid = _norm_cid(getattr(paper, "corpus_id", None))
if cid is None:
return []
return [(cid, _paper_evidence(paper))]
# ---------------------------------------------------------------------------
# Channels (sibling path, degrading to the stubs above)
# ---------------------------------------------------------------------------
def _semantic_channel(query, client, llm, inserted_before, trace=None) -> Submission:
sr = _sib("semantic_retrieval")
sj = _sib("semantic_judge")
if sr is not None and sj is not None:
try:
criteria = derive_criteria(query, llm)
pool = sr.build_pool(query, criteria, client, llm, inserted_before)
if trace is not None:
try:
trace["pool_size"] = pool.size()
except Exception:
pass
trace["pool_calls"] = getattr(pool, "calls_used", None)
# Cross-encoder rerank before judging: free (owned GPU sidecar),
# and it is what carried IRIS's semantic doubling. Soft-fails to
# the fused order when the sidecar/tunnel is unavailable.
ce = _sib("ce_rerank")
if ce is not None:
try:
pool = ce.ce_rerank_pool(
query, criteria, pool,
trace=trace if trace is not None else None)
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"ce:{exc!r}")
# Per-criterion student applied to the POOL, before the
# submission is cut to 250. This is where the loss is: 69.8% of
# submitted golds already reach the top-K window, but only 21% of
# golds reach the submission at all, while the pool holds 56-69%.
# Opt-in: PFBMAX_PERCRIT_POOL=1.
# Judge the POOL to choose which 250 get submitted. Oracle
# selection from a 60%-recall pool would give recall@FULL 0.60;
# we get 0.2145 (35.7% efficiency) and SOTA needs only 0.29.
# Opt-in: PFBMAX_CJ_POOL=1 (cost scales with CJ_POOL_DEPTH).
if os.environ.get("PFBMAX_CJ_POOL", "").strip() in ("1", "true", "yes"):
cjp = _sib("criterion_judge")
if cjp is not None and hasattr(cjp, "rerank_pool"):
try:
pool = cjp.rerank_pool(
query, criteria, pool,
meter=getattr(llm, "meter", None),
trace=trace if trace is not None else None)
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"cj_pool:{exc!r}")
if os.environ.get("PFBMAX_PERCRIT_POOL", "").strip() in ("1", "true", "yes"):
pcm = _sib("percrit_rank")
if pcm is not None and hasattr(pcm, "rerank_pool"):
try:
pool = pcm.rerank_pool(query, criteria, pool,
trace=trace if trace is not None else None)
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"percrit_pool:{exc!r}")
sub = sj.rank_and_emit(query, criteria, pool, llm)
# DILIGENT second round: expand around JUDGE-CONFIRMED papers and
# judge only the newcomers. Blind widening dilutes; a confirmed
# paper's citation neighbourhood is dense in golds.
if os.environ.get("PFBMAX_DILIGENT", "").strip() in ("1", "true", "yes"):
dmod, cjm = _sib("diligent"), _sib("criterion_judge")
if dmod is not None and cjm is not None:
try:
extra = dmod.expand(query, criteria, pool, client,
inserted_before, cjm,
trace=trace if trace is not None else None)
if extra:
# Merge by QUALITY, not arrival: a newcomer the
# judge rates at/above the grader's "highly" edge
# is inserted near the head so it can actually
# reach the scored top-K window. Appending to the
# tail measured -0.0427 despite raising recall.
have = {c for c, _e in sub}
fresh = [(c, ev, sc) for c, ev, sc in extra
if c not in have]
fresh.sort(key=lambda r: -r[2])
merged, k = [], 0
for i, row in enumerate(sub):
merged.append(row)
# interleave one newcomer every few slots
if k < len(fresh) and (i + 1) % 4 == 0:
merged.append((fresh[k][0], fresh[k][1]))
k += 1
merged += [(c, ev) for c, ev, _s in fresh[k:]]
sub = merged[:MAX_RESULTS]
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"diligent:{exc!r}")
# IRIS's own semantic channel as an ADDITIONAL candidate source.
# It measured 0.2443 on this slice vs our 0.2107 -- its fanout is
# ~168 corpus calls with criterion enrichment and graph expansion,
# which is the pool-recall edge we could not reproduce. Its order
# is prepended (recall), then listwise reranks the union
# (ordering). Opt-in: PFBMAX_IRIS_CHANNEL=1.
if os.environ.get("PFBMAX_IRIS_CHANNEL", "").strip() in ("1", "true", "yes"):
icmod = _sib("iris_channel")
if icmod is not None:
try:
iris_sub = icmod.retrieve(query, client, inserted_before,
trace=trace)
if iris_sub:
have = {c for c, _ in sub}
merged = list(iris_sub)
merged += [(c, e) for c, e in sub
if c not in {x for x, _ in iris_sub}]
sub = merged[:MAX_RESULTS]
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"iris_channel:{exc!r}")
# Listwise rerank (RankGPT-style sliding window). Our pointwise
# judge could not express "better than", which is why deleting it
# helped; a permutation model can, and the metric is pure
# ordering. Same model family as the official scorer, so it
# agrees at the perfect-vs-highly boundary where mini did not.
if sub and os.environ.get("PFBMAX_LISTWISE", "").strip() in ("1", "true", "yes"):
lwmod = _sib("listwise")
if lwmod is not None:
try:
texts = {}
for cid, ev in sub:
texts[cid] = ev
order = lwmod.rerank(
query, criteria, [(c, texts.get(c, "")) for c, _ in sub],
meter=getattr(llm, "meter", None),
trace=trace if trace is not None else None)
pos = {c: i for i, c in enumerate(order)}
sub = sorted(sub, key=lambda r: pos.get(r[0], 10**6))
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"listwise:{exc!r}")
# Per-criterion student: free, deep, grader-aligned filtering.
# Runs BEFORE the judge and over a much deeper window, because it
# costs nothing (own GPU) -- its job is to lift golds from depth
# into the range the expensive judge can afford to look at.
# Opt-in: PFBMAX_PERCRIT_URL.
if sub and os.environ.get("PFBMAX_PERCRIT_URL", "").strip():
pcmod = _sib("percrit_rank")
if pcmod is not None:
try:
ptexts = {cid: ev for cid, ev in sub}
porder = pcmod.rerank(
query, criteria,
[(c, ptexts.get(c, "")) for c, _ in sub],
trace=trace if trace is not None else None)
ppos = {c: i for i, c in enumerate(porder)}
sub = sorted(sub, key=lambda r: ppos.get(r[0], 10**6))
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"percrit:{exc!r}")
# Conjunctive criterion judging: replicate the scorer's own
# per-criterion decomposition (see pfbmax/criterion_judge.py).
# The label it predicts is the label being graded, and its gate
# is a conjunction, which is the aggregator every other ranker
# we have gets wrong. Incoming CE order breaks ties inside the
# gate. Opt-in: PFBMAX_CRITJUDGE=1.
if sub and os.environ.get("PFBMAX_CRITJUDGE", "").strip() in ("1", "true", "yes"):
cjmod = _sib("criterion_judge")
if cjmod is not None:
try:
# Judge the PAPER, not the submitted evidence string.
# The scorer reads title+abstract; a lone snippet can
# leave a criterion simply unmentioned, which a
# conjunctive gate reads as failure and demotes a
# good paper. The pool already holds title + every
# stored text (snippets, then the abstract).
def _judge_text(cid: str, ev: str) -> str:
try:
title = pool.title(cid) or ""
parts = pool.texts(cid) or ([ev] if ev else [])
except Exception:
title, parts = "", ([ev] if ev else [])
body = " ".join(p for p in parts if p)
return (title + ". " + body).strip() if title else body
order = cjmod.rerank(
query, criteria,
[(c, _judge_text(c, ev)) for c, ev in sub],
meter=getattr(llm, "meter", None),
trace=trace if trace is not None else None)
pos = {c: i for i, c in enumerate(order)}
sub = sorted(sub, key=lambda r: pos.get(r[0], 10**6))
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"critjudge:{exc!r}")
# Evidence enrichment from local abstracts was tried here and
# REGRESSED (-0.0164 mean, 4 of 6 queries down): snippet-search
# text is the passage that actually MATCHED the query, which
# proves the criteria better than sentences picked out of an
# abstract.
if sub:
return sub
except Exception as exc:
if trace is not None:
trace.setdefault("errors", []).append(f"semantic:{exc!r}")
# sibling path empty/failed: degrade to the builtin (free upside on
# the semantic slice -- submitting more is never penalized there)
else:
_report_once(
"stub:semantic",
"[pfbmax.router] semantic_retrieval/semantic_judge not present -- "
"using built-in degraded snippet+paper fallback (STUB)",
)
return _fallback_semantic(query, client, llm, inserted_before)
def _specific_channel(query, client, llm, inserted_before, trace=None) -> Submission:
m = _sib("specific_solver")
if m is not None:
return m.solve_specific(query, client, llm, inserted_before)
_report_once(
"stub:specific",
"[pfbmax.router] specific_solver not present -- using built-in "
"title-resolve STUB (single emit)",
)
return _fallback_specific(query, client, llm, inserted_before)
def _metadata_channel(query, client, llm, inserted_before, trace=None) -> Submission:
m = _sib("metadata_solver")
if m is not None:
return m.solve_metadata(query, client, llm, inserted_before)
_report_once(
"stub:metadata",
"[pfbmax.router] metadata_solver not present -- STUB returns [] "
"(the semantic fallback will fire)",
)
return []
# ---------------------------------------------------------------------------
# Entry point
# ---------------------------------------------------------------------------
def solve(query: str, client, llm, inserted_before: str | None,
*, trace: dict | None = None) -> Submission:
"""Route + solve one PFB query. Never raises.
route via :func:`classify` (one LLM json call + deterministic guard),
then dispatch; any exception falls back to the semantic channel, as does
an EMPTY result from a deterministic channel (no-empty-fallback: an
empty submission scores exactly 0, so the judged channel can only help);
total failure returns []. ``trace`` (optional, keyword-only) collects
route / fallback / pool diagnostics for the iteration engine.
"""
route = "semantic"
results: Submission = []
try:
route = classify(query, llm)
if trace is not None:
trace["route"] = route
if route == "specific":
results = _finalize(
_specific_channel(query, client, llm, inserted_before, trace))
elif route == "metadata":
results = _finalize(
_metadata_channel(query, client, llm, inserted_before, trace))
else:
results = _finalize(
_semantic_channel(query, client, llm, inserted_before, trace))
except Exception as exc:
if trace is not None:
trace["error"] = repr(exc)
results = []
if not results and route != "semantic":
if trace is not None:
trace["fallback"] = "semantic"
try:
results = _finalize(
_semantic_channel(query, client, llm, inserted_before, trace))
except Exception as exc:
if trace is not None:
trace["fallback_error"] = repr(exc)
results = []
return results
__all__ = [
"MAX_RESULTS",
"ROUTE_MARKER",
"CRITERIA_MARKER",
"ROUTE_SYSTEM",
"CRITERIA_SYSTEM",
"Submission",
"classify",
"derive_criteria",
"solve",
]
|