mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 08:25:07 +00:00

* feat: stop toolCall and rename some field. (#46) * perf: node delete tip;pay tip * fix: toolCall cannot save child answer * feat: stop tool * fix: team modal * fix feckbackMoal auth bug (#47) * 简单的支持提示词运行tool。优化workflow模板 (#49) * remove templates * fix: request body undefined * feat: prompt tool run * feat: workflow tamplates modal * perf: plugin start * 4.7 (#50) * fix docker-compose download url (#994) original code is a bad url with '404 NOT FOUND' return. fix docker-compose download url, add 'v' before docker-compose version * Update ai_settings.md (#1000) * Update configuration.md * Update configuration.md * Fix history in classifyQuestion and extract modules (#1012) * Fix history in classifyQuestion and extract modules * Add chatValue2RuntimePrompt import and update text formatting * flow controller to packages * fix: rerank select * modal ui * perf: modal code path * point not sufficient * feat: http url support variable * fix http key * perf: prompt * perf: ai setting modal * simple edit ui --------- Co-authored-by: entorick <entorick11@qq.com> Co-authored-by: liujianglc <liujianglc@163.com> Co-authored-by: Fengrui Liu <liufengrui.work@bytedance.com> * fix team share redirect to login (#51) * feat: support openapi import plugins (#48) * feat: support openapi import plugins * feat: import from url * fix: add body params parse * fix build * fix * fix * fix * tool box ui (#52) * fix: training queue * feat: simple edit tool select * perf: simple edit dataset prompt * fix: chatbox tool ux * feat: quote prompt module * perf: plugin tools sign * perf: model avatar * tool selector ui * feat: max histories * perf: http plugin import (#53) * perf: plugin http import * chatBox ui * perf: name * fix: Node template card (#54) * fix: ts * setting modal * package * package * feat: add plugins search (#57) * feat: add plugins search * perf: change http plugin header input * Yjl (#56) * perf: prompt tool call * perf: chat box ux * doc * doc * price tip * perf: tool selector * ui' * fix: vector queue * fix: empty tool and empty response * fix: empty msg * perf: pg index * perf: ui tip * doc * tool tip --------- Co-authored-by: yst <77910600+yu-and-liu@users.noreply.github.com> Co-authored-by: entorick <entorick11@qq.com> Co-authored-by: liujianglc <liujianglc@163.com> Co-authored-by: Fengrui Liu <liufengrui.work@bytedance.com> Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
157 lines
3.9 KiB
TypeScript
157 lines
3.9 KiB
TypeScript
export enum FlowNodeTemplateTypeEnum {
|
||
userGuide = 'userGuide',
|
||
systemInput = 'systemInput',
|
||
tools = 'tools',
|
||
textAnswer = 'textAnswer',
|
||
functionCall = 'functionCall',
|
||
externalCall = 'externalCall',
|
||
|
||
personalPlugin = 'personalPlugin',
|
||
|
||
other = 'other'
|
||
}
|
||
|
||
export enum ModuleIOValueTypeEnum {
|
||
string = 'string',
|
||
number = 'number',
|
||
boolean = 'boolean',
|
||
chatHistory = 'chatHistory',
|
||
datasetQuote = 'datasetQuote',
|
||
any = 'any',
|
||
|
||
// plugin special type
|
||
selectApp = 'selectApp',
|
||
selectDataset = 'selectDataset',
|
||
|
||
// tool
|
||
tools = 'tools'
|
||
}
|
||
|
||
/* reg: modulename key */
|
||
export enum ModuleInputKeyEnum {
|
||
// old
|
||
welcomeText = 'welcomeText',
|
||
variables = 'variables',
|
||
switch = 'switch', // a trigger switch
|
||
history = 'history',
|
||
userChatInput = 'userChatInput',
|
||
questionGuide = 'questionGuide',
|
||
tts = 'tts',
|
||
answerText = 'text',
|
||
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'
|
||
}
|
||
|
||
export enum ModuleOutputKeyEnum {
|
||
// common
|
||
userChatInput = 'userChatInput',
|
||
finish = 'finish',
|
||
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
|
||
datasetIsEmpty = 'isEmpty',
|
||
datasetUnEmpty = 'unEmpty',
|
||
datasetQuoteQA = 'quoteQA',
|
||
|
||
// context extract
|
||
contextExtractFields = 'fields',
|
||
|
||
// tf switch
|
||
resultTrue = 'system_resultTrue',
|
||
resultFalse = 'system_resultFalse',
|
||
|
||
// tools
|
||
selectedTools = 'selectedTools',
|
||
|
||
// http
|
||
httpRawResponse = 'httpRawResponse',
|
||
|
||
// plugin
|
||
pluginStart = 'pluginStart'
|
||
}
|
||
|
||
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_KEY = 'DYNAMIC_INPUT_KEY';
|