Files
FastGPT/client/src/constants/app.ts
2023-07-25 13:25:01 +08:00

14 lines
282 B
TypeScript

/* app */
export enum SystemInputEnum {
'welcomeText' = 'welcomeText',
'variables' = 'variables',
'switch' = 'switch', // a trigger switch
'history' = 'history',
'userChatInput' = 'userChatInput'
}
export enum VariableInputEnum {
input = 'input',
select = 'select'
}