Commit 8be0ab48 by hepeichun

fix:删除显示模型倍率都乘两倍的问题

parent f5befd5a
...@@ -146,11 +146,10 @@ const ModelPricing = () => { ...@@ -146,11 +146,10 @@ const ModelPricing = () => {
render: (text, record, index) => { render: (text, record, index) => {
let content = text; let content = text;
if (record.quota_type === 0) { if (record.quota_type === 0) {
let inputRatioPrice = record.model_ratio * 2.0 * record.group_ratio; let inputRatioPrice = record.model_ratio * record.group_ratio;
let completionRatioPrice = let completionRatioPrice =
record.model_ratio * record.model_ratio *
record.completion_ratio * record.completion_ratio *
2.0 *
record.group_ratio; record.group_ratio;
content = ( content = (
<> <>
......
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