mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00

* perf: md format * add systemConfig schema (#2) * fix: markdown * fix: root * fix: root --------- Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
14 lines
262 B
TypeScript
14 lines
262 B
TypeScript
export enum SystemConfigsTypeEnum {
|
|
fastgpt = 'fastgpt',
|
|
fastgptPro = 'fastgptPro'
|
|
}
|
|
|
|
export const SystemConfigsTypeMap = {
|
|
[SystemConfigsTypeEnum.fastgpt]: {
|
|
label: 'fastgpt'
|
|
},
|
|
[SystemConfigsTypeEnum.fastgptPro]: {
|
|
label: 'fastgptPro'
|
|
}
|
|
};
|