From f0afc261a47219e0366f151b91486da4ddf5d0e8 Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Mon, 1 Sep 2025 20:54:55 +0300 Subject: [PATCH] add prices for Kling 2.1 model for KlingStartEndFrame node (#5264) --- 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 679042a04..27355a220 100644 --- a/src/composables/node/useNodePricing.ts +++ b/src/composables/node/useNodePricing.ts @@ -413,7 +413,12 @@ const apiNodeCosts: Record = const modeValue = String(modeWidget.value) // Same pricing matrix as KlingTextToVideoNode - if (modeValue.includes('v2-master')) { + if (modeValue.includes('v2-1')) { + if (modeValue.includes('10s')) { + return '$0.98/Run' // pro, 10s + } + return '$0.49/Run' // pro, 5s default + } else if (modeValue.includes('v2-master')) { if (modeValue.includes('10s')) { return '$2.80/Run' }