From 28dc9314d200cab9ebcfcf7048477d7cd814e50d Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Thu, 27 Nov 2025 22:06:44 +0200 Subject: [PATCH] feat(api-nodes-pricing): add prices for Kling-v2-5-turbo for node KlingStartEndFrame (#6996) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Pricing for new model for this node ## Screenshots (if applicable) Screenshot From 2025-11-27 14-44-38 ┆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) --- src/composables/node/useNodePricing.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/composables/node/useNodePricing.ts b/src/composables/node/useNodePricing.ts index 8e9811e37..691802d73 100644 --- a/src/composables/node/useNodePricing.ts +++ b/src/composables/node/useNodePricing.ts @@ -623,7 +623,12 @@ const apiNodeCosts: Record = const modeValue = String(modeWidget.value) // Same pricing matrix as KlingTextToVideoNode - if (modeValue.includes('v2-1')) { + if (modeValue.includes('v2-5-turbo')) { + if (modeValue.includes('10')) { + return '$0.70/Run' + } + return '$0.35/Run' // 5s default + } else if (modeValue.includes('v2-1')) { if (modeValue.includes('10s')) { return '$0.98/Run' // pro, 10s }