2025-07-19 03:30:44 +08:00
|
|
|
|
/*
|
|
|
|
|
|
Copyright (C) 2025 QuantumNous
|
|
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2025-06-18 01:29:35 +08:00
|
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
|
|
|
import { Card, Spin, Tabs } from '@douyinfe/semi-ui';
|
|
|
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
|
|
|
2026-04-08 00:59:50 +08:00
|
|
|
|
import ModelPricingCombined from '../../pages/Setting/Ratio/ModelPricingCombined';
|
2025-08-18 04:14:35 +08:00
|
|
|
|
import GroupRatioSettings from '../../pages/Setting/Ratio/GroupRatioSettings';
|
|
|
|
|
|
import ModelRatioNotSetEditor from '../../pages/Setting/Ratio/ModelRationNotSetEditor';
|
|
|
|
|
|
import UpstreamRatioSync from '../../pages/Setting/Ratio/UpstreamRatioSync';
|
2026-03-17 16:31:14 +08:00
|
|
|
|
import ToolPriceSettings from '../../pages/Setting/Ratio/ToolPriceSettings';
|
2025-06-18 01:29:35 +08:00
|
|
|
|
|
2025-07-15 17:18:48 +08:00
|
|
|
|
import { API, showError, toBoolean } from '../../helpers';
|
2025-06-18 01:29:35 +08:00
|
|
|
|
|
|
|
|
|
|
const RatioSetting = () => {
|
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
|
|
|
|
let [inputs, setInputs] = useState({
|
|
|
|
|
|
ModelPrice: '',
|
|
|
|
|
|
ModelRatio: '',
|
|
|
|
|
|
CacheRatio: '',
|
2026-02-06 19:46:59 +08:00
|
|
|
|
CreateCacheRatio: '',
|
2025-06-18 01:29:35 +08:00
|
|
|
|
CompletionRatio: '',
|
|
|
|
|
|
GroupRatio: '',
|
|
|
|
|
|
GroupGroupRatio: '',
|
2025-08-30 23:28:09 +08:00
|
|
|
|
ImageRatio: '',
|
|
|
|
|
|
AudioRatio: '',
|
|
|
|
|
|
AudioCompletionRatio: '',
|
2025-06-18 01:29:35 +08:00
|
|
|
|
AutoGroups: '',
|
|
|
|
|
|
DefaultUseAutoGroup: false,
|
2025-06-19 08:57:34 +08:00
|
|
|
|
ExposeRatioEnabled: false,
|
2025-06-18 01:29:35 +08:00
|
|
|
|
UserUsableGroups: '',
|
2025-10-28 23:25:43 +08:00
|
|
|
|
'group_ratio_setting.group_special_usable_group': '',
|
2025-06-18 01:29:35 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
|
|
|
|
|
|
|
|
const getOptions = async () => {
|
|
|
|
|
|
const res = await API.get('/api/option/');
|
|
|
|
|
|
const { success, message, data } = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
let newInputs = {};
|
|
|
|
|
|
data.forEach((item) => {
|
2026-02-02 14:37:31 +08:00
|
|
|
|
if (item.value.startsWith('{') || item.value.startsWith('[')) {
|
2025-06-18 01:29:35 +08:00
|
|
|
|
try {
|
|
|
|
|
|
item.value = JSON.stringify(JSON.parse(item.value), null, 2);
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
// 如果后端返回的不是合法 JSON,直接展示
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-06-19 08:57:34 +08:00
|
|
|
|
if (['DefaultUseAutoGroup', 'ExposeRatioEnabled'].includes(item.key)) {
|
2025-07-15 17:18:48 +08:00
|
|
|
|
newInputs[item.key] = toBoolean(item.value);
|
2025-06-18 01:29:35 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
newInputs[item.key] = item.value;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
setInputs(newInputs);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const onRefresh = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
setLoading(true);
|
|
|
|
|
|
await getOptions();
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
showError('刷新失败');
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setLoading(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
onRefresh();
|
|
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Spin spinning={loading} size='large'>
|
|
|
|
|
|
<Card style={{ marginTop: '10px' }}>
|
2026-04-08 00:59:50 +08:00
|
|
|
|
<Tabs type='card' defaultActiveKey='pricing'>
|
|
|
|
|
|
<Tabs.TabPane tab={t('模型定价设置')} itemKey='pricing'>
|
|
|
|
|
|
<ModelPricingCombined options={inputs} refresh={onRefresh} />
|
2025-06-21 15:09:48 +08:00
|
|
|
|
</Tabs.TabPane>
|
2026-03-06 21:36:51 +08:00
|
|
|
|
<Tabs.TabPane tab={t('分组相关设置')} itemKey='group'>
|
2025-08-30 21:15:10 +08:00
|
|
|
|
<GroupRatioSettings options={inputs} refresh={onRefresh} />
|
2025-06-18 01:29:35 +08:00
|
|
|
|
</Tabs.TabPane>
|
2026-03-06 21:36:51 +08:00
|
|
|
|
<Tabs.TabPane tab={t('未设置价格模型')} itemKey='unset_models'>
|
2025-08-30 21:15:10 +08:00
|
|
|
|
<ModelRatioNotSetEditor options={inputs} refresh={onRefresh} />
|
2025-06-18 01:29:35 +08:00
|
|
|
|
</Tabs.TabPane>
|
2025-06-19 08:57:34 +08:00
|
|
|
|
<Tabs.TabPane tab={t('上游倍率同步')} itemKey='upstream_sync'>
|
2025-08-30 21:15:10 +08:00
|
|
|
|
<UpstreamRatioSync options={inputs} refresh={onRefresh} />
|
2025-06-19 08:57:34 +08:00
|
|
|
|
</Tabs.TabPane>
|
2026-03-17 16:31:14 +08:00
|
|
|
|
<Tabs.TabPane tab={t('工具调用定价')} itemKey='tool_price'>
|
|
|
|
|
|
<ToolPriceSettings options={inputs} />
|
|
|
|
|
|
</Tabs.TabPane>
|
2025-06-18 01:29:35 +08:00
|
|
|
|
</Tabs>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
</Spin>
|
|
|
|
|
|
);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-30 21:15:10 +08:00
|
|
|
|
export default RatioSetting;
|