Commit ccd0ac8d by CalciumIon

fix: 日志详情

parent 3ad6a894
...@@ -153,8 +153,8 @@ export function renderModelPrice( ...@@ -153,8 +153,8 @@ export function renderModelPrice(
let inputRatioPrice = modelRatio * 2.0; let inputRatioPrice = modelRatio * 2.0;
let completionRatioPrice = modelRatio * 2.0 * completionRatio; let completionRatioPrice = modelRatio * 2.0 * completionRatio;
let price = let price =
(inputTokens / 1000000) * inputRatioPrice + (inputTokens / 1000000) * inputRatioPrice * groupRatio +
(completionTokens / 1000000) * completionRatioPrice; (completionTokens / 1000000) * completionRatioPrice * groupRatio;
return ( return (
<> <>
<article> <article>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment