Optimize the project structure and introduce DDD design (#394)

This commit is contained in:
Archer
2023-10-12 17:46:37 +08:00
committed by GitHub
parent 76ac5238b6
commit ad7a17bf40
193 changed files with 1169 additions and 1084 deletions

View File

@@ -8,17 +8,21 @@ export enum FlowInputItemTypeEnum {
select = 'select',
slider = 'slider',
custom = 'custom',
target = 'target',
none = 'none',
target = 'target', // data input
switch = 'switch',
hidden = 'hidden',
selectApp = 'selectApp'
selectApp = 'selectApp',
// chat special input
quoteList = 'quoteList',
maxToken = 'maxToken',
selectChatModel = 'selectChatModel',
// dataset special input
selectDataset = 'selectDataset',
hidden = 'hidden'
}
export enum FlowOutputItemTypeEnum {
answer = 'answer',
source = 'source',
none = 'none',
hidden = 'hidden'
}