feat(code): add Fireworks built-in pricing overrides - #5316
Closed
Mason Daugherty (mdrxy) wants to merge 1 commit into
Closed
feat(code): add Fireworks built-in pricing overrides#5316Mason Daugherty (mdrxy) wants to merge 1 commit into
Mason Daugherty (mdrxy) wants to merge 1 commit into
Conversation
Member
Author
|
No longer needed following pydantic/genai-prices#552 |
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.
Fireworks cost estimates for three new serverless models now fall back to built-in pricing instead of showing
$0:accounts/fireworks/models/kimi-k3($3.00 / $0.30 / $15.00),accounts/fireworks/models/inkling($1.00 / $0.17 / $4.05), andaccounts/fireworks/models/deepseek-v4-flash-0731($0.14 / $0.028 / $0.28) per 1M input / cached-input / output tokens.These models shipped on Fireworks serverless without genai-prices coverage, so
estimate_costreturnedNonefor them and those requests dropped out of the session total. This adds afireworksprovider block tobundled_prices.json(#5304's fallback-on-miss override), priced from each model's pricing page: Kimi K3, Inkling, DeepSeek-V4-Flash-0731.This is a stopgap. Every entry carries
price_comments: "Stopgap pending pydantic/genai-prices#550"per thebundled_prices.README.mdpolicy, enforced bytest_every_bundled_override_entry_is_priced_and_links_upstream. The upstream addition is open at pydantic/genai-prices#550; once that merges and the hourly auto-update picks it up, these entries go inert automatically (upstream always wins on a primary-catalog hit) and can be removed as housekeeping.Rates per 1M tokens (input / cached input / output):
accounts/fireworks/models/kimi-k3accounts/fireworks/models/inklingaccounts/fireworks/models/deepseek-v4-flash-0731Notes:
deepseek-v4-flash-0731is the official release of DeepSeek-V4-Flash at the same rates as the existingdeepseek-v4-flashpreview.fireworks.yml, so no other entries are needed.