fix: ai response test (#5544)

* fix: ai response test

* fix: skip edge check

* fix: app list

* fix: toolset conflict interactive node

* fix: username show
This commit is contained in:
Archer
2025-08-27 00:08:22 +08:00
committed by GitHub
parent d2d4c76bd5
commit 324aaae769
15 changed files with 75 additions and 34 deletions

View File

@@ -48,7 +48,7 @@ export async function getSystemToolRunTimeNodeFromSystemToolset({
(item) => item.parentId === systemToolId && item.isActive !== false
);
const nodes = await Promise.all(
children.map(async (child) => {
children.map(async (child, index) => {
const toolListItem = toolSetNode.toolConfig?.systemToolSet?.toolList.find(
(item) => item.toolId === child.id
);
@@ -70,7 +70,7 @@ export async function getSystemToolRunTimeNodeFromSystemToolset({
name: toolListItem?.name || parseI18nString(tool.name, lang),
intro: toolListItem?.description || parseI18nString(tool.intro, lang),
flowNodeType: FlowNodeTypeEnum.tool,
nodeId: getNanoid(),
nodeId: `${toolSetNode.nodeId}${index}`,
toolConfig: {
systemTool: {
toolId: child.id