diff --git a/src/views/flow/config.js b/src/views/flow/config.js index 1eb684c..3eb672b 100644 --- a/src/views/flow/config.js +++ b/src/views/flow/config.js @@ -383,6 +383,19 @@ export const collapseList = [ outputType: 'json', nodeParams: [{ name: 'text', type: "input", input: "", disabled: true }], outputParams: [{ name: 'type', type: 'string', desc: '1:语音交互 2:触控交互 3: 闲聊 4:知识问答', disabled: true}] + }, { + icon: dialogueSvg, + name: "商道智能体", + type: "serviceNode", + desc: "通过apiKey调用商道大模型", + action: 'AI_AGENT_PLATFORM', + nodeType: "LLM", + outputType: 'json', + nodeParams: [ + { name: 'apiKey', type: "input", input: "", disabled: true }, + { name: 'text', type: "input", input: "", disabled: true } + ], + outputParams: [{ name: 'result', type: 'string', desc: '商道大模型的返回文案', disabled: true}] } ], },