Some checks failed
Publish Docker image (amd64, English) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (amd64) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (arm64) / Push Docker image to multiple registries (push) Has been cancelled
Linux Release / release (push) Has been cancelled
macOS Release / release (push) Has been cancelled
Windows Release / release (push) Has been cancelled
477 lines
14 KiB
JavaScript
477 lines
14 KiB
JavaScript
import React, { useEffect, useState } from 'react';
|
||
import {
|
||
Button,
|
||
Form,
|
||
Header,
|
||
Input,
|
||
Message,
|
||
Segment,
|
||
} from 'semantic-ui-react';
|
||
import { useParams } from 'react-router-dom';
|
||
import {
|
||
API,
|
||
showError,
|
||
showInfo,
|
||
showSuccess,
|
||
verifyJSON,
|
||
} from '../../helpers';
|
||
import { CHANNEL_OPTIONS } from '../../constants';
|
||
|
||
const MODEL_MAPPING_EXAMPLE = {
|
||
'gpt-3.5-turbo-0301': 'gpt-3.5-turbo',
|
||
'gpt-4-0314': 'gpt-4',
|
||
'gpt-4-32k-0314': 'gpt-4-32k',
|
||
};
|
||
|
||
const CUSTOM_HTTP_HEADERS_EXAMPLE = {
|
||
'X-OpenAI-Organization': 'OpenAI',
|
||
};
|
||
|
||
const EditChannel = () => {
|
||
const params = useParams();
|
||
const channelId = params.id;
|
||
const isEdit = channelId !== undefined;
|
||
const [loading, setLoading] = useState(isEdit);
|
||
const originInputs = {
|
||
name: '',
|
||
type: 1,
|
||
key: '',
|
||
base_url: '',
|
||
other: '',
|
||
model_mapping: '',
|
||
custom_http_headers: '',
|
||
models: [],
|
||
groups: ['default'],
|
||
enable_ip_randomization: false,
|
||
};
|
||
const [batch, setBatch] = useState(false);
|
||
const [inputs, setInputs] = useState(originInputs);
|
||
const [modelOptions, setModelOptions] = useState([]);
|
||
const [groupOptions, setGroupOptions] = useState([]);
|
||
const [basicModels, setBasicModels] = useState([]);
|
||
const [fullModels, setFullModels] = useState([]);
|
||
const [customModel, setCustomModel] = useState('');
|
||
const handleInputChange = (e, { name, value }) => {
|
||
console.log(name, value);
|
||
setInputs((inputs) => ({ ...inputs, [name]: value }));
|
||
};
|
||
|
||
const loadChannel = async (modelOptions) => {
|
||
let res = await API.get(`/api/channel/${channelId}`);
|
||
const { success, message, data } = res.data;
|
||
if (success) {
|
||
if (data.models === '') {
|
||
data.models = [];
|
||
} else {
|
||
data.models = data.models.split(',');
|
||
setTimeout(() => {
|
||
let localModelOptions = [...modelOptions];
|
||
data.models.forEach((model) => {
|
||
if (!localModelOptions.find((option) => option.key === model)) {
|
||
localModelOptions.push({
|
||
key: model,
|
||
text: model,
|
||
value: model,
|
||
});
|
||
}
|
||
});
|
||
setModelOptions(localModelOptions);
|
||
}, 1000);
|
||
}
|
||
if (data.group === '') {
|
||
data.groups = [];
|
||
} else {
|
||
data.groups = data.group.split(',');
|
||
}
|
||
if (data.model_mapping !== '') {
|
||
data.model_mapping = JSON.stringify(
|
||
JSON.parse(data.model_mapping),
|
||
null,
|
||
2,
|
||
);
|
||
}
|
||
if (data.custom_http_headers !== '') {
|
||
data.custom_http_headers = JSON.stringify(
|
||
JSON.parse(data.custom_http_headers),
|
||
null,
|
||
2,
|
||
);
|
||
}
|
||
setInputs(data);
|
||
} else {
|
||
showError(message);
|
||
}
|
||
setLoading(false);
|
||
};
|
||
|
||
const fetchModels = async () => {
|
||
try {
|
||
let res = await API.get(`/api/channel/models`);
|
||
|
||
setFullModels(res.data.data.map((model) => model.id));
|
||
setBasicModels(
|
||
res.data.data
|
||
.filter((model) => !model.id.startsWith('gpt-4'))
|
||
.map((model) => model.id),
|
||
);
|
||
|
||
const allModels = res.data.data.map((model) => ({
|
||
key: model.id,
|
||
text: model.id,
|
||
value: model.id,
|
||
}));
|
||
|
||
setModelOptions(allModels);
|
||
|
||
return allModels;
|
||
} catch (error) {
|
||
showError(error.message);
|
||
}
|
||
};
|
||
|
||
const fetchGroups = async () => {
|
||
try {
|
||
let res = await API.get(`/api/group/`);
|
||
setGroupOptions(
|
||
res.data.data.map((group) => ({
|
||
key: group,
|
||
text: group,
|
||
value: group,
|
||
})),
|
||
);
|
||
} catch (error) {
|
||
showError(error.message);
|
||
}
|
||
};
|
||
|
||
useEffect(async () => {
|
||
const models = await fetchModels();
|
||
await fetchGroups();
|
||
if (isEdit) {
|
||
await loadChannel(models);
|
||
}
|
||
}, []);
|
||
|
||
const submit = async () => {
|
||
if (!isEdit && (inputs.name === '' || inputs.key === '')) {
|
||
showInfo('请填写渠道名称和渠道密钥!');
|
||
return;
|
||
}
|
||
if (inputs.models.length === 0) {
|
||
showInfo('请至少选择一个模型!');
|
||
return;
|
||
}
|
||
if (inputs.model_mapping !== '' && !verifyJSON(inputs.model_mapping)) {
|
||
showInfo('模型映射必须是合法的 JSON 格式!');
|
||
return;
|
||
}
|
||
if (
|
||
inputs.custom_http_headers !== '' &&
|
||
!verifyJSON(inputs.custom_http_headers)
|
||
) {
|
||
showInfo('自定义 HTTP 头必须是合法的 JSON 格式!');
|
||
return;
|
||
}
|
||
let localInputs = inputs;
|
||
if (localInputs.base_url.endsWith('/')) {
|
||
localInputs.base_url = localInputs.base_url.slice(
|
||
0,
|
||
localInputs.base_url.length - 1,
|
||
);
|
||
}
|
||
if (localInputs.type === 3 && localInputs.other === '') {
|
||
localInputs.other = '2023-03-15-preview';
|
||
}
|
||
let res;
|
||
localInputs.models = localInputs.models.join(',');
|
||
localInputs.group = localInputs.groups.join(',');
|
||
if (isEdit) {
|
||
res = await API.put(`/api/channel/`, {
|
||
...localInputs,
|
||
id: parseInt(channelId),
|
||
});
|
||
} else {
|
||
res = await API.post(`/api/channel/`, localInputs);
|
||
}
|
||
const { success, message } = res.data;
|
||
if (success) {
|
||
if (isEdit) {
|
||
showSuccess('渠道更新成功!');
|
||
} else {
|
||
showSuccess('渠道创建成功!');
|
||
setInputs(originInputs);
|
||
}
|
||
} else {
|
||
showError(message);
|
||
}
|
||
};
|
||
|
||
return (
|
||
<>
|
||
<Segment loading={loading}>
|
||
<Header as='h3'>{isEdit ? '更新渠道信息' : '创建新的渠道'}</Header>
|
||
<Form autoComplete='new-password'>
|
||
<Form.Field>
|
||
<Form.Select
|
||
label='类型'
|
||
name='type'
|
||
required
|
||
options={CHANNEL_OPTIONS}
|
||
value={inputs.type}
|
||
onChange={handleInputChange}
|
||
/>
|
||
</Form.Field>
|
||
{inputs.type === 3 && (
|
||
<>
|
||
<Message>
|
||
注意,<strong>模型部署名称必须和模型名称保持一致</strong>,因为
|
||
One API 会把请求体中的 model
|
||
参数替换为你的部署名称(模型名称中的点会被剔除),
|
||
<a
|
||
target='_blank'
|
||
href='https://github.com/songquanpeng/one-api/issues/133?notification_referrer_id=NT_kwDOAmJSYrM2NjIwMzI3NDgyOjM5OTk4MDUw#issuecomment-1571602271'
|
||
>
|
||
图片演示
|
||
</a>
|
||
。
|
||
</Message>
|
||
<Form.Field>
|
||
<Form.Input
|
||
label='AZURE_OPENAI_ENDPOINT'
|
||
name='base_url'
|
||
placeholder={
|
||
'请输入 AZURE_OPENAI_ENDPOINT,例如:https://docs-test-001.openai.azure.com'
|
||
}
|
||
onChange={handleInputChange}
|
||
value={inputs.base_url}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
<Form.Field>
|
||
<Form.Input
|
||
label='默认 API 版本'
|
||
name='other'
|
||
placeholder={
|
||
'请输入默认 API 版本,例如:2023-03-15-preview,该配置可以被实际的请求查询参数所覆盖'
|
||
}
|
||
onChange={handleInputChange}
|
||
value={inputs.other}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
</>
|
||
)}
|
||
{inputs.type === 8 && (
|
||
<Form.Field>
|
||
<Form.Input
|
||
label='Base URL'
|
||
name='base_url'
|
||
placeholder={
|
||
'请输入自定义渠道的 Base URL,例如:https://openai.justsong.cn'
|
||
}
|
||
onChange={handleInputChange}
|
||
value={inputs.base_url}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
)}
|
||
{inputs.type !== 3 && inputs.type !== 8 && (
|
||
<Form.Field>
|
||
<Form.Input
|
||
label='镜像'
|
||
name='base_url'
|
||
placeholder={
|
||
'此项可选,输入镜像站地址,格式为:https://domain.com'
|
||
}
|
||
onChange={handleInputChange}
|
||
value={inputs.base_url}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
)}
|
||
<Form.Field>
|
||
<Form.Input
|
||
label='名称'
|
||
required
|
||
name='name'
|
||
placeholder={'请输入名称'}
|
||
onChange={handleInputChange}
|
||
value={inputs.name}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
<Form.Field>
|
||
<Form.Dropdown
|
||
label='分组'
|
||
placeholder={'请选择分组'}
|
||
name='groups'
|
||
required
|
||
fluid
|
||
multiple
|
||
selection
|
||
allowAdditions
|
||
additionLabel={'请在系统设置页面编辑分组倍率以添加新的分组:'}
|
||
onChange={handleInputChange}
|
||
value={inputs.groups}
|
||
autoComplete='new-password'
|
||
options={groupOptions}
|
||
/>
|
||
</Form.Field>
|
||
<Form.Field>
|
||
<Form.Dropdown
|
||
label='模型'
|
||
placeholder={'请选择该通道所支持的模型'}
|
||
name='models'
|
||
required
|
||
fluid
|
||
multiple
|
||
selection
|
||
onChange={handleInputChange}
|
||
value={inputs.models}
|
||
autoComplete='new-password'
|
||
options={modelOptions}
|
||
/>
|
||
</Form.Field>
|
||
<div style={{ lineHeight: '40px', marginBottom: '12px' }}>
|
||
<Button
|
||
type={'button'}
|
||
onClick={() => {
|
||
handleInputChange(null, { name: 'models', value: basicModels });
|
||
}}
|
||
>
|
||
填入基础模型
|
||
</Button>
|
||
<Button
|
||
type={'button'}
|
||
onClick={() => {
|
||
handleInputChange(null, { name: 'models', value: fullModels });
|
||
}}
|
||
>
|
||
填入所有模型
|
||
</Button>
|
||
<Button
|
||
type={'button'}
|
||
onClick={() => {
|
||
handleInputChange(null, { name: 'models', value: [] });
|
||
}}
|
||
>
|
||
清除所有模型
|
||
</Button>
|
||
<Input
|
||
action={
|
||
<Button
|
||
type={'button'}
|
||
onClick={() => {
|
||
let localModels = [...inputs.models];
|
||
localModels.push(customModel);
|
||
let localModelOptions = [...modelOptions];
|
||
localModelOptions.push({
|
||
key: customModel,
|
||
text: customModel,
|
||
value: customModel,
|
||
});
|
||
setModelOptions(localModelOptions);
|
||
handleInputChange(null, {
|
||
name: 'models',
|
||
value: localModels,
|
||
});
|
||
}}
|
||
>
|
||
填入
|
||
</Button>
|
||
}
|
||
placeholder='输入自定义模型名称'
|
||
value={customModel}
|
||
onChange={(e, { value }) => {
|
||
setCustomModel(value);
|
||
}}
|
||
/>
|
||
</div>
|
||
<Form.Field>
|
||
<Form.Checkbox
|
||
name='enable_ip_randomization'
|
||
label='将IP随机地址传递给HTTP头'
|
||
onChange={(e, { name, checked }) => {
|
||
handleInputChange(e, { name, value: checked });
|
||
}}
|
||
checked={inputs.enable_ip_randomization}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
<Form.Field>
|
||
<Form.TextArea
|
||
label='模型映射'
|
||
placeholder={`此项可选,为一个 JSON 文本,键为用户请求的模型名称,值为要替换的模型名称,例如:\n${JSON.stringify(
|
||
MODEL_MAPPING_EXAMPLE,
|
||
null,
|
||
2,
|
||
)}`}
|
||
name='model_mapping'
|
||
onChange={handleInputChange}
|
||
value={inputs.model_mapping}
|
||
style={{ minHeight: 150, fontFamily: 'JetBrains Mono, Consolas' }}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
<Form.Field>
|
||
<Form.TextArea
|
||
label='自定义 HTTP 头'
|
||
placeholder={`此项可选,为一个 JSON 文本,键为 HTTP 头名称,值为 HTTP 头内容,例如:\n${JSON.stringify(
|
||
CUSTOM_HTTP_HEADERS_EXAMPLE,
|
||
null,
|
||
2,
|
||
)}`}
|
||
name='custom_http_headers'
|
||
onChange={handleInputChange}
|
||
value={inputs.custom_http_headers}
|
||
style={{ minHeight: 150, fontFamily: 'JetBrains Mono, Consolas' }}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
{batch ? (
|
||
<Form.Field>
|
||
<Form.TextArea
|
||
label='密钥'
|
||
name='key'
|
||
placeholder={'请输入密钥,一行一个'}
|
||
onChange={handleInputChange}
|
||
value={inputs.key}
|
||
style={{
|
||
minHeight: 150,
|
||
fontFamily: 'JetBrains Mono, Consolas',
|
||
}}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
) : (
|
||
<Form.Field>
|
||
<Form.Input
|
||
label='密钥'
|
||
name='key'
|
||
required
|
||
placeholder={'请输入密钥'}
|
||
onChange={handleInputChange}
|
||
value={inputs.key}
|
||
autoComplete='new-password'
|
||
/>
|
||
</Form.Field>
|
||
)}
|
||
{!isEdit && (
|
||
<Form.Checkbox
|
||
checked={batch}
|
||
label='批量创建'
|
||
name='batch'
|
||
onChange={() => setBatch(!batch)}
|
||
/>
|
||
)}
|
||
<Button type={isEdit ? 'button' : 'submit'} positive onClick={submit}>
|
||
提交
|
||
</Button>
|
||
</Form>
|
||
</Segment>
|
||
</>
|
||
);
|
||
};
|
||
|
||
export default EditChannel;
|