mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 12:20:34 +00:00

* feat: think tag parse * feat: parse think tag test * feat: pdf parse ux * feat: doc2x parse * perf: rewrite training mode setting * feat: image parse queue * perf: image index * feat: image parse process * feat: add init sh * fix: ts
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import { i18nT } from '../../../../web/i18n/utils';
|
|
|
|
export enum UsageSourceEnum {
|
|
fastgpt = 'fastgpt',
|
|
api = 'api',
|
|
shareLink = 'shareLink',
|
|
training = 'training',
|
|
cronJob = 'cronJob',
|
|
share = 'share',
|
|
wecom = 'wecom',
|
|
feishu = 'feishu',
|
|
dingtalk = 'dingtalk',
|
|
official_account = 'official_account',
|
|
pdfParse = 'pdfParse'
|
|
}
|
|
|
|
export const UsageSourceMap = {
|
|
[UsageSourceEnum.fastgpt]: {
|
|
label: i18nT('common:core.chat.logs.online')
|
|
},
|
|
[UsageSourceEnum.api]: {
|
|
label: 'API'
|
|
},
|
|
[UsageSourceEnum.shareLink]: {
|
|
label: i18nT('common:core.chat.logs.free_login')
|
|
},
|
|
[UsageSourceEnum.training]: {
|
|
label: i18nT('common:dataset.Training Name')
|
|
},
|
|
[UsageSourceEnum.cronJob]: {
|
|
label: i18nT('common:cron_job_run_app')
|
|
},
|
|
[UsageSourceEnum.feishu]: {
|
|
label: i18nT('account_usage:feishu')
|
|
},
|
|
[UsageSourceEnum.official_account]: {
|
|
label: i18nT('account_usage:official_account')
|
|
},
|
|
[UsageSourceEnum.share]: {
|
|
label: i18nT('account_usage:share')
|
|
},
|
|
[UsageSourceEnum.wecom]: {
|
|
label: i18nT('account_usage:wecom')
|
|
},
|
|
[UsageSourceEnum.dingtalk]: {
|
|
label: i18nT('account_usage:dingtalk')
|
|
},
|
|
[UsageSourceEnum.pdfParse]: {
|
|
label: i18nT('account_usage:pdf_parse')
|
|
}
|
|
};
|