mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-20 10:45:52 +00:00
4.13.1 features (#5728)
* fix(api): 修复二级路由下的页面判断逻辑 在请求错误处理中,添加基础URL前缀以正确判断当前是否为外部链接页面。 * perf: use global var * remove invalid code * feat: response limit;perf: copy avatar image;perf: markdown parse (#5719) * feat: response limit * remove placeholder * perf: copy avatar image * perf: markdown parse * fix: child app cannot show cite * doc * fix: node template bugs (#5727) * add dataset search count track (#5721) * add dataset search count track * remove pro * change to track * remove unused * fix * perf: track code --------- Co-authored-by: archer <545436317@qq.com> * http response limit * deploy doc * fix: test * doc * remove invalid code * remove invalid code --------- Co-authored-by: 戴盛利 <1639499287@qq.com> Co-authored-by: heheer <heheer@sealos.io>
This commit is contained in:
@@ -134,9 +134,6 @@ export enum FlowNodeTypeEnum {
|
||||
classifyQuestion = 'classifyQuestion',
|
||||
contentExtract = 'contentExtract',
|
||||
httpRequest468 = 'httpRequest468',
|
||||
runApp = 'app',
|
||||
appModule = 'appModule',
|
||||
pluginModule = 'pluginModule',
|
||||
pluginInput = 'pluginInput',
|
||||
pluginOutput = 'pluginOutput',
|
||||
queryExtension = 'cfr',
|
||||
@@ -156,7 +153,12 @@ export enum FlowNodeTypeEnum {
|
||||
loopEnd = 'loopEnd',
|
||||
formInput = 'formInput',
|
||||
tool = 'tool',
|
||||
toolSet = 'toolSet'
|
||||
toolSet = 'toolSet',
|
||||
|
||||
// child:
|
||||
appModule = 'appModule',
|
||||
pluginModule = 'pluginModule',
|
||||
runApp = 'app'
|
||||
}
|
||||
|
||||
// node IO value type
|
||||
|
@@ -276,7 +276,7 @@ export const appData2FlowNodeIO = ({
|
||||
description: '',
|
||||
valueType: WorkflowIOValueTypeEnum.any,
|
||||
required: item.required,
|
||||
list: item.enums?.map((enumItem) => ({
|
||||
list: (item.list || item.enums)?.map((enumItem) => ({
|
||||
label: enumItem.value,
|
||||
value: enumItem.value
|
||||
}))
|
||||
|
Reference in New Issue
Block a user