@@ -151,7 +151,7 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
151
151
152
152
const renderingSpeed = String ( renderingSpeedWidget . value )
153
153
if ( renderingSpeed . toLowerCase ( ) . includes ( 'quality' ) ) {
154
- basePrice = 0.08
154
+ basePrice = 0.09
155
155
} else if ( renderingSpeed . toLowerCase ( ) . includes ( 'balanced' ) ) {
156
156
basePrice = 0.06
157
157
} else if ( renderingSpeed . toLowerCase ( ) . includes ( 'turbo' ) ) {
@@ -322,15 +322,15 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
322
322
const effectScene = String ( effectSceneWidget . value )
323
323
if (
324
324
effectScene . includes ( 'fuzzyfuzzy' ) ||
325
- effectScene . includes ( 'squish' ) ||
326
- effectScene . includes ( 'expansion' )
325
+ effectScene . includes ( 'squish' )
327
326
) {
328
327
return '$0.28/Run'
329
- } else if (
330
- effectScene . includes ( 'dizzydizzy' ) ||
331
- effectScene . includes ( 'bloombloom' )
332
- ) {
328
+ } else if ( effectScene . includes ( 'dizzydizzy' ) ) {
329
+ return '$0.49/Run'
330
+ } else if ( effectScene . includes ( 'bloombloom' ) ) {
333
331
return '$0.49/Run'
332
+ } else if ( effectScene . includes ( 'expansion' ) ) {
333
+ return '$0.28/Run'
334
334
}
335
335
336
336
return '$0.28/Run'
@@ -448,12 +448,12 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
448
448
} else if ( model . includes ( 'ray-2' ) ) {
449
449
if ( duration . includes ( '5s' ) ) {
450
450
if ( resolution . includes ( '4k' ) ) return '$6.37/Run'
451
- if ( resolution . includes ( '1080p' ) ) return '$2.30 /Run'
451
+ if ( resolution . includes ( '1080p' ) ) return '$1.59 /Run'
452
452
if ( resolution . includes ( '720p' ) ) return '$0.71/Run'
453
453
if ( resolution . includes ( '540p' ) ) return '$0.40/Run'
454
454
} else if ( duration . includes ( '9s' ) ) {
455
455
if ( resolution . includes ( '4k' ) ) return '$11.47/Run'
456
- if ( resolution . includes ( '1080p' ) ) return '$4.14 /Run'
456
+ if ( resolution . includes ( '1080p' ) ) return '$2.87 /Run'
457
457
if ( resolution . includes ( '720p' ) ) return '$1.28/Run'
458
458
if ( resolution . includes ( '540p' ) ) return '$0.72/Run'
459
459
}
@@ -499,12 +499,12 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
499
499
} else if ( model . includes ( 'ray-2' ) ) {
500
500
if ( duration . includes ( '5s' ) ) {
501
501
if ( resolution . includes ( '4k' ) ) return '$6.37/Run'
502
- if ( resolution . includes ( '1080p' ) ) return '$2.30 /Run'
502
+ if ( resolution . includes ( '1080p' ) ) return '$1.59 /Run'
503
503
if ( resolution . includes ( '720p' ) ) return '$0.71/Run'
504
504
if ( resolution . includes ( '540p' ) ) return '$0.40/Run'
505
505
} else if ( duration . includes ( '9s' ) ) {
506
506
if ( resolution . includes ( '4k' ) ) return '$11.47/Run'
507
- if ( resolution . includes ( '1080p' ) ) return '$4.14 /Run'
507
+ if ( resolution . includes ( '1080p' ) ) return '$2.87 /Run'
508
508
if ( resolution . includes ( '720p' ) ) return '$1.28/Run'
509
509
if ( resolution . includes ( '540p' ) ) return '$0.72/Run'
510
510
}
0 commit comments