From f36ad8544c9af13cb440e7604480bfacda221dd9 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Thu, 16 Oct 2025 03:52:45 +0900 Subject: [PATCH] [backport 1.28] add pricing for new Veo3.1 model (#6075) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #6074 to `core/1.28` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6075-backport-1-28-add-pricing-for-new-Veo3-1-model-28d6d73d365081c0b647f8a472d4fca9) by [Unito](https://www.unito.io) Co-authored-by: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> --- src/composables/node/useNodePricing.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/composables/node/useNodePricing.ts b/src/composables/node/useNodePricing.ts index a2590101ca..c1eedd3fe2 100644 --- a/src/composables/node/useNodePricing.ts +++ b/src/composables/node/useNodePricing.ts @@ -1141,9 +1141,15 @@ const apiNodeCosts: Record = const generateAudio = String(generateAudioWidget.value).toLowerCase() === 'true' - if (model.includes('veo-3.0-fast-generate-001')) { + if ( + model.includes('veo-3.0-fast-generate-001') || + model.includes('veo-3.1-fast-generate') + ) { return generateAudio ? '$1.20/Run' : '$0.80/Run' - } else if (model.includes('veo-3.0-generate-001')) { + } else if ( + model.includes('veo-3.0-generate-001') || + model.includes('veo-3.1-generate') + ) { return generateAudio ? '$3.20/Run' : '$1.60/Run' }