Skip to content

Commit 28dc931

Browse files
authored
feat(api-nodes-pricing): add prices for Kling-v2-5-turbo for node KlingStartEndFrame (#6996)
## Summary Pricing for new model for this node ## Screenshots (if applicable) <img width="1174" height="422" alt="Screenshot From 2025-11-27 14-44-38" src="https://github.com/user-attachments/assets/78edb4d2-3aef-427c-98d5-ea9b6b18b203" /> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6996-feat-api-nodes-pricing-add-prices-for-Kling-v2-5-turbo-for-node-KlingStartEndFrame-2b86d73d36508171ba2cd186248228b7) by [Unito](https://www.unito.io)
1 parent 3acf9aa commit 28dc931

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/composables/node/useNodePricing.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,12 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
623623
const modeValue = String(modeWidget.value)
624624

625625
// Same pricing matrix as KlingTextToVideoNode
626-
if (modeValue.includes('v2-1')) {
626+
if (modeValue.includes('v2-5-turbo')) {
627+
if (modeValue.includes('10')) {
628+
return '$0.70/Run'
629+
}
630+
return '$0.35/Run' // 5s default
631+
} else if (modeValue.includes('v2-1')) {
627632
if (modeValue.includes('10s')) {
628633
return '$0.98/Run' // pro, 10s
629634
}

0 commit comments

Comments
 (0)