feat(optimize): select the best structured transform - #1
Merged
Conversation
cgasgarth
marked this pull request as ready for review
July 31, 2026 17:18
hardy30894
self-requested a review
August 3, 2026 21:53
Contributor
Author
|
Happy to contribute back, using the package in github.com/cgasgarth/clodex |
Member
|
@cgasgarth Awesome! Seeing savings first time in real action! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

What changed
Structured JSON compression now performs a verified best-of-N search instead of shipping the first codec that clears the saving gate.
Optimizer::with_counter()installs a tokenizer. (Shred already carried one.)String::len().No wire format or decoder behavior changes.
Why
Columnar was always tried first, so it could mask a cheaper Nested or Normalize representation for overlapping record shapes. Doc also made byte-based decisions inside a token-priced optimizer. This lets SecondWind consistently choose the cheapest proven readable wire for the active model, without changing fidelity proofs or detector coverage.
cl100k inline benchmark
Measured on the checked-in compression corpus with offload disabled, comparing upstream
mainwith this branch. Counts are the emitted inline wire's cl100k tokens.mainThe low-cardinality case improves total input reduction from 69.8% to 71.0% while remaining byte-exact on recovery.
Validation
cargo test --workspacecargo test -p secondwind-optimize --features tiktokencargo clippy --workspace --all-targetscargo fmt --check