ci/cd调整

This commit is contained in:
2026-06-08 13:39:20 +08:00
parent 34c5eeaf63
commit ab3a2d967e
6 changed files with 16 additions and 12 deletions

View File

@@ -20,6 +20,12 @@ import (
)
func getNodeInfo(flowInfo *entity.FlowExecution) (htmlUrl []string, textModelName string, textResultFrom map[string]any, textModelResponse map[string]any, imgModelName string, imgResultFrom map[string]any, imgModelResponse map[string]any) {
textModelName = ""
textResultFrom = make(map[string]any)
textModelResponse = make(map[string]any)
imgModelName = ""
imgResultFrom = make(map[string]any)
imgModelResponse = make(map[string]any)
// 查询节点中是否包含结果合并节点
for _, item := range flowInfo.NodeInputParams {
if item.NodeCode == node.NodeTypeMerge {