From 72a258106841442ea761e821c044db420e439e40 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Sun, 30 Nov 2025 07:09:55 +0900 Subject: [PATCH] [backport cloud/1.33] feat(api-nodes-pricing): add prices for ByteDance seedance-1-0-pro-fast model (#7030) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #7026 to `cloud/1.33` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7030-backport-cloud-1-33-feat-api-nodes-pricing-add-prices-for-ByteDance-seedance-1-0-pro--2b96d73d365081ff9e4feb7b1d147dc5) by [Unito](https://www.unito.io) Co-authored-by: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> --- src/composables/node/useNodePricing.ts | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/composables/node/useNodePricing.ts b/src/composables/node/useNodePricing.ts index 8e9811e37..7e4992edd 100644 --- a/src/composables/node/useNodePricing.ts +++ b/src/composables/node/useNodePricing.ts @@ -131,6 +131,11 @@ const byteDanceVideoPricingCalculator = (node: LGraphNode): string => { '720p': [0.51, 0.56], '1080p': [1.18, 1.22] }, + 'seedance-1-0-pro-fast': { + '480p': [0.09, 0.1], + '720p': [0.21, 0.23], + '1080p': [0.47, 0.49] + }, 'seedance-1-0-lite': { '480p': [0.17, 0.18], '720p': [0.37, 0.41], @@ -138,11 +143,13 @@ const byteDanceVideoPricingCalculator = (node: LGraphNode): string => { } } - const modelKey = model.includes('seedance-1-0-pro') - ? 'seedance-1-0-pro' - : model.includes('seedance-1-0-lite') - ? 'seedance-1-0-lite' - : '' + const modelKey = model.includes('seedance-1-0-pro-fast') + ? 'seedance-1-0-pro-fast' + : model.includes('seedance-1-0-pro') + ? 'seedance-1-0-pro' + : model.includes('seedance-1-0-lite') + ? 'seedance-1-0-lite' + : '' const resKey = resolution.includes('1080') ? '1080p'