Skip to contents

The catalogue for axis 3, and the cheapest way to choose one: the signature column tells you how a reader traverses the chunks and cost_calls tells you what that costs, both before you spend anything.

Usage

gr_readers()

Value

A data frame with one row per registered reader: name, signature (see gr_reader_signature()), cost_calls (a formula in N, the number of chunks, not a number) and description.

Examples

# Grouped by how they select chunks, which is the real taxonomy:
# `all|...` readers see every chunk, `topk|...` readers see a selection.
r <- gr_readers()
r[order(r$signature), c("name", "signature", "cost_calls")]
#>            name             signature                    cost_calls
#> 12        stuff            all|1|none                             1
#> 11         skim          all|N+1|none                         N + 1
#> 2       extract  all|N+conflicts|none N + one per disagreeing field
#> 5    map_reduce       all|N+logN|tree                    N + merges
#> 3  hierarchical     all|N+tree+1|tree         N + fan-in levels + 1
#> 7        refine         all|N|forward                             N
#> 1      ensemble   ensemble|sum+1|none            sum of members + 1
#> 10       screen           head|1|none                             1
#> 6       preview    planned|1+s+1|none      1 + skimmed sections + 1
#> 9      retrieve           topk|1|none                1 + embeddings
#> 8        rerank         topk|m+1|none                         m + 1
#> 4     iterative topk|rounds*2|forward          up to 2 x max_rounds