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

* mongo init * perf: mongo connect * perf: tts perf: whisper and tts peref: tts whisper permission log reabase (#488) * perf: modal * i18n * perf: schema lean * feat: vision model format * perf: tts loading * perf: static data * perf: tts * feat: image * perf: image * perf: upload image and title * perf: image size * doc * perf: color * doc * speaking can not select file * doc
60 lines
1.1 KiB
TypeScript
60 lines
1.1 KiB
TypeScript
export enum ChatRoleEnum {
|
|
System = 'System',
|
|
Human = 'Human',
|
|
AI = 'AI',
|
|
Function = 'Function',
|
|
Tool = 'Tool'
|
|
}
|
|
|
|
export enum TaskResponseKeyEnum {
|
|
'answerText' = 'answerText', // answer module text key
|
|
'responseData' = 'responseData',
|
|
'history' = 'history'
|
|
}
|
|
|
|
export const ChatRoleMap = {
|
|
[ChatRoleEnum.System]: {
|
|
name: '系统提示词'
|
|
},
|
|
[ChatRoleEnum.Human]: {
|
|
name: '用户'
|
|
},
|
|
[ChatRoleEnum.AI]: {
|
|
name: 'AI'
|
|
},
|
|
[ChatRoleEnum.Function]: {
|
|
name: 'Function'
|
|
},
|
|
[ChatRoleEnum.Tool]: {
|
|
name: 'Tool'
|
|
}
|
|
};
|
|
|
|
export enum ChatSourceEnum {
|
|
test = 'test',
|
|
online = 'online',
|
|
share = 'share',
|
|
api = 'api'
|
|
}
|
|
|
|
export const ChatSourceMap = {
|
|
[ChatSourceEnum.test]: {
|
|
name: 'chat.logs.test'
|
|
},
|
|
[ChatSourceEnum.online]: {
|
|
name: 'chat.logs.online'
|
|
},
|
|
[ChatSourceEnum.share]: {
|
|
name: 'chat.logs.share'
|
|
},
|
|
[ChatSourceEnum.api]: {
|
|
name: 'chat.logs.api'
|
|
}
|
|
};
|
|
|
|
export const HUMAN_ICON = `/icon/human.svg`;
|
|
export const LOGO_ICON = `/icon/logo.svg`;
|
|
|
|
export const IMG_BLOCK_KEY = 'img-block';
|
|
export const FILE_BLOCK_KEY = 'file-block';
|