feat: implement tool pricing settings UI and enhance tool call quota calculations
This commit is contained in:
@@ -26,6 +26,7 @@ import ModelRatioSettings from '../../pages/Setting/Ratio/ModelRatioSettings';
|
||||
import ModelSettingsVisualEditor from '../../pages/Setting/Ratio/ModelSettingsVisualEditor';
|
||||
import ModelRatioNotSetEditor from '../../pages/Setting/Ratio/ModelRationNotSetEditor';
|
||||
import UpstreamRatioSync from '../../pages/Setting/Ratio/UpstreamRatioSync';
|
||||
import ToolPriceSettings from '../../pages/Setting/Ratio/ToolPriceSettings';
|
||||
|
||||
import { API, showError, toBoolean } from '../../helpers';
|
||||
|
||||
@@ -113,6 +114,9 @@ const RatioSetting = () => {
|
||||
<Tabs.TabPane tab={t('上游倍率同步')} itemKey='upstream_sync'>
|
||||
<UpstreamRatioSync options={inputs} refresh={onRefresh} />
|
||||
</Tabs.TabPane>
|
||||
<Tabs.TabPane tab={t('工具调用定价')} itemKey='tool_price'>
|
||||
<ToolPriceSettings options={inputs} />
|
||||
</Tabs.TabPane>
|
||||
</Tabs>
|
||||
</Card>
|
||||
</Spin>
|
||||
|
||||
@@ -0,0 +1,283 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
import React, { useEffect, useMemo, useState } from 'react';
|
||||
import {
|
||||
Banner,
|
||||
Button,
|
||||
Input,
|
||||
InputNumber,
|
||||
Radio,
|
||||
RadioGroup,
|
||||
Table,
|
||||
TextArea,
|
||||
Typography,
|
||||
} from '@douyinfe/semi-ui';
|
||||
import { IconCopy, IconDelete, IconPlus } from '@douyinfe/semi-icons';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { API, copy, showError, showSuccess } from '../../../helpers';
|
||||
|
||||
const { Text } = Typography;
|
||||
|
||||
const OPTION_KEY = 'tool_price_setting.prices';
|
||||
|
||||
const DEFAULT_PRICES = {
|
||||
web_search: 10.0,
|
||||
web_search_preview: 10.0,
|
||||
'web_search_preview:gpt-4o*': 25.0,
|
||||
'web_search_preview:gpt-4.1*': 25.0,
|
||||
'web_search_preview:gpt-4o-mini*': 25.0,
|
||||
'web_search_preview:gpt-4.1-mini*': 25.0,
|
||||
file_search: 2.5,
|
||||
google_search: 14.0,
|
||||
};
|
||||
|
||||
function rowsToObject(rows) {
|
||||
const prices = {};
|
||||
for (const row of rows) {
|
||||
const k = row.key.trim();
|
||||
if (!k) continue;
|
||||
prices[k] = Number(row.price) || 0;
|
||||
}
|
||||
return prices;
|
||||
}
|
||||
|
||||
function objectToRows(prices) {
|
||||
return Object.entries(prices).map(([key, price], i) => ({
|
||||
id: i,
|
||||
key,
|
||||
price,
|
||||
}));
|
||||
}
|
||||
|
||||
export default function ToolPriceSettings({ options }) {
|
||||
const { t } = useTranslation();
|
||||
const [rows, setRows] = useState([]);
|
||||
const [mode, setMode] = useState('visual');
|
||||
const [jsonText, setJsonText] = useState('');
|
||||
const [jsonError, setJsonError] = useState('');
|
||||
const [saving, setSaving] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
let prices = {};
|
||||
try {
|
||||
const raw = options?.[OPTION_KEY];
|
||||
if (raw) {
|
||||
prices = typeof raw === 'string' ? JSON.parse(raw) : raw;
|
||||
}
|
||||
} catch {
|
||||
prices = {};
|
||||
}
|
||||
|
||||
if (!prices || Object.keys(prices).length === 0) {
|
||||
prices = { ...DEFAULT_PRICES };
|
||||
}
|
||||
|
||||
setRows(objectToRows(prices));
|
||||
setJsonText(JSON.stringify(prices, null, 2));
|
||||
}, [options]);
|
||||
|
||||
const syncToJson = (nextRows) => {
|
||||
setRows(nextRows);
|
||||
setJsonText(JSON.stringify(rowsToObject(nextRows), null, 2));
|
||||
setJsonError('');
|
||||
};
|
||||
|
||||
const syncToVisual = (text) => {
|
||||
setJsonText(text);
|
||||
try {
|
||||
const parsed = JSON.parse(text);
|
||||
if (typeof parsed !== 'object' || Array.isArray(parsed)) {
|
||||
setJsonError(t('JSON 必须是对象'));
|
||||
return;
|
||||
}
|
||||
setRows(objectToRows(parsed));
|
||||
setJsonError('');
|
||||
} catch (e) {
|
||||
setJsonError(e.message);
|
||||
}
|
||||
};
|
||||
|
||||
const updateRow = (id, field, value) => {
|
||||
syncToJson(rows.map((r) => (r.id === id ? { ...r, [field]: value } : r)));
|
||||
};
|
||||
|
||||
const addRow = () => {
|
||||
syncToJson([...rows, { id: Date.now(), key: '', price: 0 }]);
|
||||
};
|
||||
|
||||
const removeRow = (id) => {
|
||||
syncToJson(rows.filter((r) => r.id !== id));
|
||||
};
|
||||
|
||||
const resetToDefault = () => {
|
||||
syncToJson(objectToRows(DEFAULT_PRICES));
|
||||
};
|
||||
|
||||
const currentPrices = useMemo(() => rowsToObject(rows), [rows]);
|
||||
|
||||
const handleSave = async () => {
|
||||
setSaving(true);
|
||||
try {
|
||||
const res = await API.put('/api/option/', {
|
||||
key: OPTION_KEY,
|
||||
value: JSON.stringify(currentPrices),
|
||||
});
|
||||
if (res.data.success) {
|
||||
showSuccess(t('保存成功'));
|
||||
} else {
|
||||
showError(res.data.message || t('保存失败'));
|
||||
}
|
||||
} catch (e) {
|
||||
showError(e.message);
|
||||
} finally {
|
||||
setSaving(false);
|
||||
}
|
||||
};
|
||||
|
||||
const columns = [
|
||||
{
|
||||
title: t('工具标识'),
|
||||
dataIndex: 'key',
|
||||
render: (text, record) => (
|
||||
<Input
|
||||
value={text}
|
||||
placeholder='web_search_preview:gpt-4o*'
|
||||
onChange={(val) => updateRow(record.id, 'key', val)}
|
||||
style={{ width: '100%' }}
|
||||
/>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: t('价格') + ' ($/1K' + t('次') + ')',
|
||||
dataIndex: 'price',
|
||||
width: 160,
|
||||
render: (val, record) => (
|
||||
<InputNumber
|
||||
value={val}
|
||||
min={0}
|
||||
step={0.5}
|
||||
onChange={(v) => updateRow(record.id, 'price', v ?? 0)}
|
||||
style={{ width: '100%' }}
|
||||
/>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: t('操作'),
|
||||
width: 60,
|
||||
render: (_, record) => (
|
||||
<Button
|
||||
icon={<IconDelete />}
|
||||
type='danger'
|
||||
theme='borderless'
|
||||
size='small'
|
||||
onClick={() => removeRow(record.id)}
|
||||
/>
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<div style={{ maxWidth: 700 }}>
|
||||
<Banner
|
||||
type='info'
|
||||
description={
|
||||
<>
|
||||
<div>{t('配置各工具的调用价格($/1K次调用)。按次计费模型不额外收取工具费用。')}</div>
|
||||
<div style={{ marginTop: 4 }}>
|
||||
<Text strong>{t('格式')}:</Text>
|
||||
<code>web_search_preview</code> {t('为默认价格')},
|
||||
<code>web_search_preview:gpt-4o*</code> {t('为模型前缀覆盖')}
|
||||
</div>
|
||||
</>
|
||||
}
|
||||
style={{ marginBottom: 16 }}
|
||||
/>
|
||||
|
||||
<RadioGroup
|
||||
type='button'
|
||||
size='small'
|
||||
value={mode}
|
||||
onChange={(e) => setMode(e.target.value)}
|
||||
style={{ marginBottom: 12 }}
|
||||
>
|
||||
<Radio value='visual'>{t('可视化')}</Radio>
|
||||
<Radio value='json'>JSON</Radio>
|
||||
</RadioGroup>
|
||||
|
||||
{mode === 'visual' ? (
|
||||
<>
|
||||
<Table
|
||||
dataSource={rows}
|
||||
columns={columns}
|
||||
pagination={false}
|
||||
size='small'
|
||||
rowKey='id'
|
||||
/>
|
||||
<div style={{ display: 'flex', gap: 8, marginTop: 12 }}>
|
||||
<Button icon={<IconPlus />} onClick={addRow}>
|
||||
{t('添加')}
|
||||
</Button>
|
||||
<Button theme='borderless' onClick={resetToDefault}>
|
||||
{t('恢复默认')}
|
||||
</Button>
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<TextArea
|
||||
value={jsonText}
|
||||
onChange={syncToVisual}
|
||||
autosize={{ minRows: 8, maxRows: 20 }}
|
||||
style={{ fontFamily: 'monospace', fontSize: 13 }}
|
||||
/>
|
||||
{jsonError && (
|
||||
<Text type='danger' size='small' style={{ display: 'block', marginTop: 4 }}>
|
||||
{jsonError}
|
||||
</Text>
|
||||
)}
|
||||
<div style={{ display: 'flex', gap: 8, marginTop: 8 }}>
|
||||
<Button
|
||||
icon={<IconCopy />}
|
||||
size='small'
|
||||
theme='borderless'
|
||||
onClick={() => { copy(jsonText, t('JSON')); }}
|
||||
>
|
||||
{t('复制')}
|
||||
</Button>
|
||||
<Button size='small' theme='borderless' onClick={resetToDefault}>
|
||||
{t('恢复默认')}
|
||||
</Button>
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
|
||||
<div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: 16 }}>
|
||||
<Button
|
||||
theme='solid'
|
||||
type='primary'
|
||||
loading={saving}
|
||||
disabled={mode === 'json' && !!jsonError}
|
||||
onClick={handleSave}
|
||||
>
|
||||
{t('保存')}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user