retrieval.retrievers¶
The Retriever protocol and the six retriever implementations
(LexicalRetriever, ContextualLexicalRetriever, TurbovecRetriever,
PiSeriniRetriever, HybridRetriever, TreeSitterRetriever), plus the
REGISTRY and build_retriever helper.
Pluggable document-level retrievers.
Every retriever implements the same tiny contract:
name -> str human label for the results table
index(documents) -> None build over a list of Document
search(query, top_k) -> List[str] ranked docids, best first
search_detailed(query, top_k) -> List[SearchHit] ranked hits with file:line spans
documents are expected to be chunk-granularity (see
retrieval.project_loader.load_chunk_documents): each carries a
docid of the form "{path}:{start}-{end}" plus the same span as
structured source_path/start_line/end_line fields. Every
retriever tracks a parallel self._units list ({docid, source_path,
start_line, end_line}) built straight from the indexed Documents'
metadata — never by parsing spans back out of a docid string — and
search_detailed maps each ranked positional index into its unit to
build a SearchHit. search() is a thin wrapper: [h.docid for h in
search_detailed(...)], kept for backward-compatible callers.
Six backends:
LexicalRetriever— the project's own BM25 + TF-IDF + RRF, run at the document level. Pure stdlib; always available.TurbovecRetriever— dense ANN over embeddings via TurboQuant (github.com/RyanCodrai/turbovec). Lazy import; needs theturbovecextra plus an embedder.PiSeriniRetriever— Lucene BM25 via Pyserini, the lexical retriever the paper (github.com/justram/pi-serini) reports. Lazy import; needs thepyseriniextra and Java 21.HybridRetriever— lexical + dense arms indexed together, fused with RRF at search time. Needs whateverTurbovecRetrieverneeds.TreeSitterRetriever— the same lexical (BM25+TF-IDF+RRF) ranking over AST-boundary chunks (seeretrieval.ast_chunker), enriched with a breadcrumbcontext(enclosing function/class) prefixed into the ranked text and carried onto each hit. Tree-sitter is only needed at chunking time (inretrieval.project_loader.load_ast_chunk_documents), so the retriever itself has no optional deps.
Optional backends follow the project's stub convention (see
retrieval/providers.py): construction may succeed, but the missing
dependency raises a RuntimeError with opt-in instructions when used.
ContextualLexicalRetriever
¶
Bases: LexicalRetriever
LexicalRetriever over LLM-enriched document text.
Before indexing, each document's text is prefixed with an LLM-generated
context (topics + key entities) — the document-granularity analog of
Anthropic's Contextual Retrieval — then ranked with the same TF-IDF + BM25 +
RRF as LexicalRetriever.
Opt-in and online: enrichment is one LLM call per document (cost scales with
corpus size). Lazy import; needs the anthropic package +
ANTHROPIC_API_KEY.
Source code in engine/retrieval/retrievers.py
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 | |
HybridRetriever
¶
Lexical + dense arms over the same corpus, fused with RRF at search time.
Indexes both a LexicalRetriever and a TurbovecRetriever over the
documents; search takes each arm's ranking, remaps docids into a
shared integer space, and fuses with reciprocal_rank_fusion. Needs
the same optional extras as TurbovecRetriever (indexing raises their
guidance RuntimeError when absent).
Source code in engine/retrieval/retrievers.py
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 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 | |
from_dict(data)
classmethod
¶
Rebuild both arms from to_dict output.
Raises ValueError on an unrecognized schema version and
RuntimeError when the dense arm's extras are missing.
Source code in engine/retrieval/retrievers.py
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 | |
to_dict()
¶
Serialize both arms to a JSON-safe dict for on-disk persistence.
Source code in engine/retrieval/retrievers.py
610 611 612 613 614 615 616 617 618 619 620 621 622 | |
LexicalRetriever
¶
Project core: TF-IDF + BM25 fused with RRF, document-level.
Each document is treated as a single retrieval unit (no sub-chunking), so a document's score is the fusion of its TF-IDF and BM25 rankings.
Source code in engine/retrieval/retrievers.py
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 | |
from_dict(data)
classmethod
¶
Rebuild a LexicalRetriever from to_dict output.
Raises ValueError on an unrecognized schema version; callers
should catch this and reindex from scratch rather than risk mis-
parsing an incompatible on-disk cache.
Source code in engine/retrieval/retrievers.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | |
to_dict()
¶
Serialize to a JSON-safe dict for on-disk persistence.
Source code in engine/retrieval/retrievers.py
144 145 146 147 148 149 150 151 152 | |
PiSeriniRetriever
¶
Lucene BM25 via Pyserini — the paper's reference lexical retriever.
Builds an in-memory Lucene index over the corpus and queries it with
Pyserini's LuceneSearcher. Requires Java 21 (Pyserini wraps Anserini).
pi-serini (the strategy and registry key, from the Pi-Serini paper)
and pyserini (the library and install extra) are distinct names,
not a typo for each other.
Source code in engine/retrieval/retrievers.py
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 | |
from_dict(data)
classmethod
¶
Reopen a searcher over the persisted Lucene index directory.
Raises ValueError on an unrecognized schema version or a missing
index directory (callers should treat that as "no usable cache" and
reindex), and RuntimeError when the pyserini extra is absent.
Source code in engine/retrieval/retrievers.py
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | |
to_dict()
¶
Serialize to a JSON-safe pointer at the on-disk Lucene index.
The Lucene segments themselves stay in index_path (they are
binary and already on disk); only the path + BM25 params + docids
are stored, so persistence is only meaningful when the retriever
was built with an explicit, durable index_path.
Source code in engine/retrieval/retrievers.py
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 | |
TreeSitterRetriever
¶
Bases: LexicalRetriever
LexicalRetriever over AST-boundary ("cAST") chunked documents.
Expects documents chunk-granularity via
retrieval.project_loader.load_ast_chunk_documents, each optionally
carrying a context breadcrumb (enclosing function/class path, e.g.
"Bar.baz"). Before indexing, each document's breadcrumb is prefixed
into its ranked text (so a query for "Bar baz" can match a chunk purely
via its enclosing-scope name), then ranked with the same TF-IDF + BM25 +
RRF as LexicalRetriever. Tree-sitter itself is only needed at
chunking time, not here, so this retriever has zero optional deps.
Source code in engine/retrieval/retrievers.py
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 | |
TurbovecRetriever
¶
Dense ANN comparison via TurboQuant quantization (turbovec).
Embeds documents with a sentence-transformers model, indexes the vectors
in a TurboQuantIndex, and ranks by inner-product similarity. The
embedder is intentionally pluggable; the default is a small, fast model.
Source code in engine/retrieval/retrievers.py
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 | |
from_dict(data)
classmethod
¶
Rebuild from to_dict output; needs the same extras as index.
Raises ValueError on an unrecognized schema version and
RuntimeError (with opt-in guidance) when the optional backends
are missing.
Source code in engine/retrieval/retrievers.py
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 | |
to_dict()
¶
Serialize to a JSON-safe dict (docids + raw embedding vectors).
The quantized TurboQuantIndex itself is not serializable, so the
pre-quantization vectors are stored and the index is rebuilt from
them in from_dict.
Source code in engine/retrieval/retrievers.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | |
build_retriever(name, params=None)
¶
Construct retriever name, optionally applying params.
params is filtered to the retriever class's own ACCEPTS and mapped
to constructor keywords (see resolve_ctor_kwargs); unknown keys are
silently dropped. params=None (the default) reproduces a bare,
default-hyperparameter construction, identical to before this parameter
existed.
Source code in engine/retrieval/retrievers.py
676 677 678 679 680 681 682 683 684 685 686 687 688 | |
resolve_ctor_kwargs(name, cls, params)
¶
Filter params down to cls's ACCEPTS (empty set if undeclared)
and map each key to its constructor keyword name (see _CTOR_KWARG_MAP).
Unknown keys are silently dropped. params=None (or empty) yields an
empty kwargs dict, reproducing a bare cls() construction.
Source code in engine/retrieval/retrievers.py
662 663 664 665 666 667 668 669 670 671 672 673 | |