feat: generic_proxy

This commit is contained in:
jialin
2025-11-11 15:47:32 +08:00
parent b4b25d4300
commit ee5c30934b
13 changed files with 138 additions and 12 deletions
+3 -1
View File
@@ -56,7 +56,9 @@ const icons = {
type: 'icon-lock_open_right'
}),
LockPerson: React.createElement(IconFont, { type: 'icon-lock_person' }),
LockOpen: React.createElement(IconFont, { type: 'icon-lock_open' })
LockOpen: React.createElement(IconFont, { type: 'icon-lock_open' }),
Permission: React.createElement(IconFont, { type: 'icon-permission' }),
CaptivePortal: React.createElement(IconFont, { type: 'icon-captive_portal' })
};
export default icons;
+1 -1
View File
@@ -2,7 +2,7 @@ import { createFromIconfontCN } from '@ant-design/icons';
// import './iconfont/iconfont.js';
const IconFont = createFromIconfontCN({
scriptUrl: '//at.alicdn.com/t/c/font_4613488_ipdaaask7g.js'
scriptUrl: '//at.alicdn.com/t/c/font_4613488_ga8perwfeom.js'
});
export default IconFont;
+11
View File
@@ -14,6 +14,17 @@ type WatchConfig =
| { watch: true; API: string; polling?: false | undefined }
| { polling: true; watch: false | undefined; API?: string };
/**
*
* @param contentForDelete i18n key for delete confirmation modal content
* @param fetchAPI API function to fetch data, should return a promise with Global.PageResponse<T>
* @param deleteAPI API function to delete an item, should return a promise
* @param defaultData default data list
* @param events events to watch for chunked updates, default: ['UPDATE', 'DELETE']
* @param defaultQueryParams default query parameters for fetching data
* @param isInfiniteScroll whether to use infinite scroll mode , use in card list
* @returns
*/
export default function useTableFetch<T>(
options: {
fetchAPI: (params: any) => Promise<Global.PageResponse<T>>;
+4 -1
View File
@@ -244,5 +244,8 @@ export default {
'Up to 63 characters; letters, numbers, dots (.), underscores (_), and hyphens (-) only; must start and end with an alphanumeric character.',
'models.catalog.button.explore': 'Explore Other Models',
'models.catalog.precision': 'Precision',
'models.form.gpuPerReplica.tips': 'Enter a custom number'
'models.form.gpuPerReplica.tips': 'Enter a custom number',
'models.form.generic_proxy': 'Enable Generic Proxy',
'models.form.generic_proxy.tips': 'Enable Generic Proxy',
'models.form.generic_proxy.button': 'Generic Proxy'
};
+8 -2
View File
@@ -244,7 +244,10 @@ export default {
'Up to 63 characters; letters, numbers, dots (.), underscores (_), and hyphens (-) only; must start and end with an alphanumeric character.',
'models.catalog.button.explore': 'Explore Other Models',
'models.catalog.precision': 'Precision',
'models.form.gpuPerReplica.tips': 'Enter a custom number'
'models.form.gpuPerReplica.tips': 'Enter a custom number',
'models.form.generic_proxy': 'Enable Generic Proxy',
'models.form.generic_proxy.tips': 'Enable Generic Proxy',
'models.form.generic_proxy.button': 'Generic Proxy'
};
// ========== To-Do: Translate Keys (Remove After Translation) ==========
@@ -316,6 +319,9 @@ export default {
// 49. 'models.form.rules.name': 'Up to 63 characters; letters, numbers, dots (.), underscores (_), and hyphens (-) only; must start and end with an alphanumeric character.',
// 50. 'models.catalog.button.explore': 'Explore Other Models',
// 51. 'models.catalog.precision': 'Precision',
// 52. 'models.form.gpuPerReplica.tips': 'Enter a custom number'
// 52. 'models.form.gpuPerReplica.tips': 'Enter a custom number',
// 53. 'models.form.generic_proxy': 'Enable Generic Proxy',
// 54. 'models.form.generic_proxy.tips': 'Enable Generic Proxy',
// 55. 'models.form.generic_proxy.button': 'Generic Proxy'
// ========== End of To-Do List ==========
+8 -2
View File
@@ -245,10 +245,16 @@ export default {
'Up to 63 characters; letters, numbers, dots (.), underscores (_), and hyphens (-) only; must start and end with an alphanumeric character.',
'models.catalog.button.explore': 'Изучить другие модели',
'models.catalog.precision': 'Точность',
'models.form.gpuPerReplica.tips': 'Enter a custom number'
'models.form.gpuPerReplica.tips': 'Enter a custom number',
'models.form.generic_proxy': 'Enable Generic Proxy',
'models.form.generic_proxy.tips': 'Enable Generic Proxy',
'models.form.generic_proxy.button': 'Generic Proxy'
};
// ========== To-Do: Translate Keys (Remove After Translation) ==========
// 1. 'models.form.rules.name': 'Up to 63 characters; letters, numbers, dots (.), underscores (_), and hyphens (-) only; must start and end with an alphanumeric character.',
// 2. 'models.form.gpuPerReplica.tips': 'Enter a custom number'
// 2. 'models.form.gpuPerReplica.tips': 'Enter a custom number',
// 3. 'models.form.generic_proxy': 'Enable Generic Proxy',
// 4. 'models.form.generic_proxy.tips': 'Enable Generic Proxy',
// 5. 'models.form.generic_proxy.button': 'Generic Proxy'
// ========== End of To-Do List ==========
+4 -1
View File
@@ -231,5 +231,8 @@ export default {
'长度不超过 63 个字符,只能包含字母、数字、点(.)、下划线(_)和连字符(-),且必须以字母或数字开头和结尾。',
'models.catalog.button.explore': '浏览其他模型',
'models.catalog.precision': '精度',
'models.form.gpuPerReplica.tips': '输入自定义数值'
'models.form.gpuPerReplica.tips': '输入自定义数值',
'models.form.generic_proxy': '启用通用代理',
'models.form.generic_proxy.tips': '启用通用代理',
'models.form.generic_proxy.button': '通用代理'
};
+1 -1
View File
@@ -28,7 +28,7 @@ import useCredentialColumns from './hooks/use-credential-columns';
const addActions = [
{
label: 'Digital Ocean',
label: 'DigitalOcean',
locale: false,
key: ProviderValueMap.DigitalOcean,
value: ProviderValueMap.DigitalOcean,
+6 -1
View File
@@ -50,6 +50,11 @@ export const ActionList: ActionItem[] = [
key: 'chat',
icon: icons.ExperimentOutlined
},
// {
// label: 'models.form.generic_proxy.button',
// key: 'proxy',
// icon: icons.CaptivePortal
// },
{
label: 'models.table.button.apiAccessInfo',
key: 'api',
@@ -68,7 +73,7 @@ export const ActionList: ActionItem[] = [
{
label: 'models.button.accessSettings',
key: 'accessControl',
icon: icons.Private
icon: icons.Permission
},
{
label: 'common.button.delete',
+1
View File
@@ -60,6 +60,7 @@ export interface FormData {
local_path?: string;
model_scope_model_id?: string;
model_scope_file_path?: string;
generic_proxy?: boolean;
gpu_selector?: {
gpu_ids?: string[];
gpu_type?: string;
+14 -1
View File
@@ -25,7 +25,6 @@ const AdvanceConfig = () => {
}, [backend, backendOptions]);
const handleEnviromentVarsChange = (labels: Record<string, any>) => {
console.log('handleEnviromentVarsChange', labels);
form.setFieldValue('env', labels);
};
@@ -134,6 +133,20 @@ const AdvanceConfig = () => {
})}
></CheckboxField>
</Form.Item>
{/* <Form.Item<FormData>
name="generic_proxy"
valuePropName="checked"
style={{ marginBottom: 8 }}
>
<CheckboxField
description={intl.formatMessage({
id: 'models.form.generic_proxy.tips'
})}
label={intl.formatMessage({
id: 'models.form.generic_proxy'
})}
></CheckboxField>
</Form.Item> */}
</>
);
};
+1 -1
View File
@@ -220,7 +220,7 @@ const ScheduleTypeForm: React.FC = () => {
<InputWrapper>
<InputNumber
min={1}
max={16}
max={64}
step={1}
style={{ width: '100%' }}
defaultValue={
@@ -0,0 +1,76 @@
import ScrollerModal from '@/components/scroller-modal';
import CommandViewer from '@/pages/_components/command-viewer';
import { GPUSTACK_API, OPENAI_COMPATIBLE } from '@/pages/playground/apis';
import { formatCurlArgs } from '@/pages/playground/view-code/utils';
import { useIntl } from '@umijs/max';
import { useState } from 'react';
const langOptions = [{ label: 'Curl', value: 'bash' }];
const generateCode = ({ api: url, parameters }: Record<string, any>) => {
const host = window.location.origin;
const api = url.replace(OPENAI_COMPATIBLE, GPUSTACK_API);
// ========================= Curl =========================
const curlCode = `
curl ${host}${api} \\
-H "Content-Type: application/json" \\
-H "Authorization: Bearer $\{YOUR_GPUSTACK_API_KEY}" \\
${formatCurlArgs(parameters, false)}`.trim();
};
const useGenericProxy = () => {
const intl = useIntl();
const [modalStatus, setModalStatus] = useState<{
open: boolean;
codeValue: string;
}>({ open: false, codeValue: '' });
const onCancel = () => {
setModalStatus({
open: false,
codeValue: ''
});
};
const openProxyModal = (data?: any) => {
setModalStatus({
open: true,
codeValue: data?.generic_proxy_command || ''
});
};
const GenericProxyModal = () => {
return (
<ScrollerModal
title={intl.formatMessage({
id: 'models.form.generic_title.button'
})}
open={modalStatus.open}
centered={true}
onCancel={onCancel}
destroyOnHidden={true}
closeIcon={true}
maskClosable={false}
keyboard={false}
width={700}
footer={false}
>
<CommandViewer
code={modalStatus.codeValue}
copyText={modalStatus.codeValue}
options={langOptions}
defaultValue={'bash'}
></CommandViewer>
</ScrollerModal>
);
};
return {
GenericProxyModal,
openProxyModal,
setModalStatus
};
};
export default useGenericProxy;