feat(compare): add counterfactual pricing#238
Open
ozymandiashh wants to merge 1 commit intogetagentseal:mainfrom
Open
feat(compare): add counterfactual pricing#238ozymandiashh wants to merge 1 commit intogetagentseal:mainfrom
ozymandiashh wants to merge 1 commit intogetagentseal:mainfrom
Conversation
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.
Summary
This adds a pricing-only what-if mode to
codeburn compare:codeburn compare --reprice <model>. The normal interactive model comparison stays unchanged, but users can now ask how their recorded usage would have priced if every call had used a different model.The calculation keeps the original usage shape: input tokens, output tokens, cache creation, cache reads, web-search requests, and fast-mode flags are reused exactly as recorded. Only the model pricing table changes. That makes the output useful for budget planning while keeping the scope honest: it does not claim to simulate model quality, different reasoning behavior, or shorter/longer outputs.
What changed
codeburn compare --reprice <model>as a non-interactive what-if pricing mode--jsonfor scripted/reporting workflows when--repriceis used<synthetic>calls so provider bookkeeping entries are not repriced as real API callsExample
Output shape
The text output is meant for quick budget decisions:
The JSON output returns the same structure in USD fields so downstream scripts do not have to parse localized currency strings.
Validation
npx vitest run tests/reprice.test.tsnpx vitest runnpm run buildnode dist/cli.js compare --helpnode dist/cli.js compare --reprice gpt-4o-mini -p today --jsonnode dist/cli.js compare --jsonNote: full
npx tsc --noEmitis still blocked onorigin/mainby existingsrc/providers/copilot.tstype errors; this branch does not touch that provider.