diff --git a/web/src/helpers/render.js b/web/src/helpers/render.js index d84b2ebb..8db5091c 100644 --- a/web/src/helpers/render.js +++ b/web/src/helpers/render.js @@ -149,8 +149,8 @@ export function renderModelPrice( if (completionRatio === undefined) { completionRatio = 0; } - let inputRatioPrice = modelRatio * 2.0 * groupRatio; - let completionRatioPrice = modelRatio * completionRatio * 2.0 * groupRatio; + let inputRatioPrice = modelRatio * groupRatio; + let completionRatioPrice = modelRatio * completionRatio * groupRatio; let price = (inputTokens / 1000000) * inputRatioPrice + (completionTokens / 1000000) * completionRatioPrice;