Expand description
tetration โ Rust library for the Tetration mmap-oriented chunked tensor format.
Public API: catalog, convert, layout, query, verify, repair, and prelude
for common embedder imports. The companion CLI is tet (src/bin/tet.rs, src/bin/tet/).
Embedder walkthrough: cargo run --example session_write (or create_and_query,
inspect_catalog; file health: tet verify / verify).
Modulesยง
- catalog
- Dataset directory and chunk index (layout v1 extension).
- convert
- Foreign format โ
.tetconversion (Phase 5). - layout
- On-disk layout v1: fixed superblock at offset 0.
- prelude
- Common embedder imports: query document types, parse/validate/plan, mmap open.
- query
- JSON query documents: validated plans, execution, and CLI formatters.
- repair
- In-place
.tetrepairs (invoked bytet repairortet verify --repair). - verify
.tetfile health verification (layout, chunk integrity, footer).