Commit 45ace20c by Calcium-Ion Committed by GitHub

Merge pull request #272 from hepeichun/main

fix: 删除显示模型倍率都乘两倍的问题
parents a1f2ffc7 8be0ab48
......@@ -146,11 +146,10 @@ const ModelPricing = () => {
render: (text, record, index) => {
let content = text;
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 =
record.model_ratio *
record.completion_ratio *
2.0 *
record.group_ratio;
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