mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-21 03:10:50 +00:00

* Revert "lafAccount add pat & re request when token invalid (#76)" (#77) This reverts commit 83d85dfe37adcaef4833385ea52ee79fd84720be. * perf: workflow ux * system config * Newflow (#89) * docs: Add doc for Xinference (#1266) Signed-off-by: Carson Yang <yangchuansheng33@gmail.com> * Revert "lafAccount add pat & re request when token invalid (#76)" (#77) This reverts commit 83d85dfe37adcaef4833385ea52ee79fd84720be. * perf: workflow ux * system config * Revert "lafAccount add pat & re request when token invalid (#76)" (#77) This reverts commit 83d85dfe37adcaef4833385ea52ee79fd84720be. * Revert "lafAccount add pat & re request when token invalid (#76)" (#77) This reverts commit 83d85dfe37adcaef4833385ea52ee79fd84720be. * Revert "lafAccount add pat & re request when token invalid (#76)" (#77) This reverts commit 83d85dfe37adcaef4833385ea52ee79fd84720be. * rename code * move code * update flow * input type selector * perf: workflow runtime * feat: node adapt newflow * feat: adapt plugin * feat: 360 connection * check workflow * perf: flow 性能 * change plugin input type (#81) * change plugin input type * plugin label mode * perf: nodecard * debug * perf: debug ui * connection ui * change workflow ui (#82) * feat: workflow debug * adapt openAPI for new workflow (#83) * adapt openAPI for new workflow * i18n * perf: plugin debug * plugin input ui * delete * perf: global variable select * fix rebase * perf: workflow performance * feat: input render type icon * input icon * adapt flow (#84) * adapt newflow * temp * temp * fix * feat: app schedule trigger * feat: app schedule trigger * perf: schedule ui * feat: ioslatevm run js code * perf: workflow varialbe table ui * feat: adapt simple mode * feat: adapt input params * output * feat: adapt tamplate * fix: ts * add if-else module (#86) * perf: worker * if else node * perf: tiktoken worker * fix: ts * perf: tiktoken * fix if-else node (#87) * fix if-else node * type * fix * perf: audio render * perf: Parallel worker * log * perf: if else node * adapt plugin * prompt * perf: reference ui * reference ui * handle ux * template ui and plugin tool * adapt v1 workflow * adapt v1 workflow completions * perf: time variables * feat: workflow keyboard shortcuts * adapt v1 workflow * update workflow example doc (#88) * fix: simple mode select tool --------- Signed-off-by: Carson Yang <yangchuansheng33@gmail.com> Co-authored-by: Carson Yang <yangchuansheng33@gmail.com> Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com> * doc * perf: extract node * extra node field * update plugin version * doc * variable * change doc & fix prompt editor (#90) * fold workflow code * value type label --------- Signed-off-by: Carson Yang <yangchuansheng33@gmail.com> Co-authored-by: Carson Yang <yangchuansheng33@gmail.com> Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
176 lines
4.2 KiB
TypeScript
176 lines
4.2 KiB
TypeScript
export enum FlowNodeTemplateTypeEnum {
|
||
systemInput = 'systemInput',
|
||
tools = 'tools',
|
||
textAnswer = 'textAnswer',
|
||
functionCall = 'functionCall',
|
||
externalCall = 'externalCall',
|
||
|
||
personalPlugin = 'personalPlugin',
|
||
|
||
other = 'other'
|
||
}
|
||
|
||
export enum WorkflowIOValueTypeEnum {
|
||
string = 'string',
|
||
number = 'number',
|
||
boolean = 'boolean',
|
||
any = 'any',
|
||
|
||
chatHistory = 'chatHistory',
|
||
datasetQuote = 'datasetQuote',
|
||
dynamic = 'dynamic',
|
||
|
||
// plugin special type
|
||
selectApp = 'selectApp',
|
||
selectDataset = 'selectDataset',
|
||
|
||
// tool
|
||
tools = 'tools'
|
||
}
|
||
|
||
/* reg: modulename key */
|
||
export enum NodeInputKeyEnum {
|
||
// old
|
||
welcomeText = 'welcomeText',
|
||
switch = 'switch', // a trigger switch
|
||
history = 'history',
|
||
userChatInput = 'userChatInput',
|
||
answerText = 'text',
|
||
|
||
// system config
|
||
questionGuide = 'questionGuide',
|
||
tts = 'tts',
|
||
whisper = 'whisper',
|
||
variables = 'variables',
|
||
scheduleTrigger = 'scheduleTrigger',
|
||
|
||
agents = 'agents', // cq agent key
|
||
|
||
// latest
|
||
// common
|
||
aiModel = 'model',
|
||
aiSystemPrompt = 'systemPrompt',
|
||
description = 'description',
|
||
anyInput = 'system_anyInput',
|
||
textareaInput = 'system_textareaInput',
|
||
addInputParam = 'system_addInputParam',
|
||
|
||
// history
|
||
historyMaxAmount = 'maxContext',
|
||
|
||
// ai chat
|
||
aiChatTemperature = 'temperature',
|
||
aiChatMaxToken = 'maxToken',
|
||
aiChatSettingModal = 'aiSettings',
|
||
aiChatIsResponseText = 'isResponseAnswerText',
|
||
aiChatQuoteTemplate = 'quoteTemplate',
|
||
aiChatQuotePrompt = 'quotePrompt',
|
||
aiChatDatasetQuote = 'quoteQA',
|
||
|
||
// dataset
|
||
datasetSelectList = 'datasets',
|
||
datasetSimilarity = 'similarity',
|
||
datasetMaxTokens = 'limit',
|
||
datasetSearchMode = 'searchMode',
|
||
datasetSearchUsingReRank = 'usingReRank',
|
||
datasetSearchUsingExtensionQuery = 'datasetSearchUsingExtensionQuery',
|
||
datasetSearchExtensionModel = 'datasetSearchExtensionModel',
|
||
datasetSearchExtensionBg = 'datasetSearchExtensionBg',
|
||
|
||
// context extract
|
||
contextExtractInput = 'content',
|
||
extractKeys = 'extractKeys',
|
||
|
||
// http
|
||
httpReqUrl = 'system_httpReqUrl',
|
||
httpHeaders = 'system_httpHeader',
|
||
httpMethod = 'system_httpMethod',
|
||
httpParams = 'system_httpParams',
|
||
httpJsonBody = 'system_httpJsonBody',
|
||
abandon_httpUrl = 'url',
|
||
|
||
// app
|
||
runAppSelectApp = 'app',
|
||
|
||
// plugin
|
||
pluginId = 'pluginId',
|
||
pluginStart = 'pluginStart',
|
||
|
||
// if else
|
||
condition = 'condition',
|
||
ifElseList = 'ifElseList'
|
||
}
|
||
|
||
export enum NodeOutputKeyEnum {
|
||
// common
|
||
userChatInput = 'userChatInput',
|
||
history = 'history',
|
||
answerText = 'answerText', // module answer. the value will be show and save to history
|
||
success = 'success',
|
||
failed = 'failed',
|
||
text = 'system_text',
|
||
addOutputParam = 'system_addOutputParam',
|
||
|
||
// dataset
|
||
datasetQuoteQA = 'quoteQA',
|
||
|
||
// classify
|
||
cqResult = 'cqResult',
|
||
// context extract
|
||
contextExtractFields = 'fields',
|
||
|
||
// tf switch
|
||
resultTrue = 'system_resultTrue',
|
||
resultFalse = 'system_resultFalse',
|
||
|
||
// tools
|
||
selectedTools = 'selectedTools',
|
||
|
||
// http
|
||
httpRawResponse = 'httpRawResponse',
|
||
|
||
// plugin
|
||
pluginStart = 'pluginStart',
|
||
|
||
if = 'IF',
|
||
else = 'ELSE'
|
||
}
|
||
|
||
export enum VariableInputEnum {
|
||
input = 'input',
|
||
textarea = 'textarea',
|
||
select = 'select',
|
||
external = 'external'
|
||
}
|
||
export const variableMap = {
|
||
[VariableInputEnum.input]: {
|
||
icon: 'core/app/variable/input',
|
||
title: 'core.module.variable.input type',
|
||
desc: ''
|
||
},
|
||
[VariableInputEnum.textarea]: {
|
||
icon: 'core/app/variable/textarea',
|
||
title: 'core.module.variable.textarea type',
|
||
desc: '允许用户最多输入4000字的对话框。'
|
||
},
|
||
[VariableInputEnum.select]: {
|
||
icon: 'core/app/variable/select',
|
||
title: 'core.module.variable.select type',
|
||
desc: ''
|
||
},
|
||
[VariableInputEnum.external]: {
|
||
icon: 'core/app/variable/external',
|
||
title: 'core.module.variable.External type',
|
||
desc: '可以通过API接口或分享链接的Query传递变量。增加该类型变量的主要目的是用于变量提示。使用例子: 你可以通过分享链接Query中拼接Token,来实现内部系统身份鉴权。'
|
||
}
|
||
};
|
||
|
||
export const DYNAMIC_INPUT_REFERENCE_KEY = 'DYNAMIC_INPUT_REFERENCE_KEY';
|
||
|
||
/* run time */
|
||
export enum RuntimeEdgeStatusEnum {
|
||
'waiting' = 'waiting',
|
||
'active' = 'active',
|
||
'skipped' = 'skipped'
|
||
}
|