Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
addressed review
  • Loading branch information
bigcat88 committed Dec 11, 2025
commit 448d96bb48e8f42f07ed2ddc2600b47fb4fcf0f3
4 changes: 2 additions & 2 deletions src/composables/node/useNodePricing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
if (resolution.includes('720p')) return '$1.83/Run'
if (resolution.includes('540p')) return '$1.03/Run'
}
} else if (model.includes('ray-1.6')) {
} else if (model.includes('ray-1-6')) {
return '$0.50/Run'
}

Expand Down Expand Up @@ -826,7 +826,7 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
if (resolution.includes('4k')) return '$5.65/Run'
if (resolution.includes('1080p')) return '$1.42/Run'
if (resolution.includes('720p')) return '$0.61/Run'
if (resolution.includes('540p')) return '$$0.36/Run'
if (resolution.includes('540p')) return '$0.36/Run'
}
} else if (model.includes('ray-2')) {
if (duration.includes('5s')) {
Expand Down
Loading