From 74723e613929f5d369a978b7728520a704b071ab Mon Sep 17 00:00:00 2001 From: zhanghao <774378400@qq.com> Date: Tue, 3 Mar 2026 15:50:33 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E5=95=86=E9=81=93?= =?UTF-8?q?=E5=A4=A7=E6=A8=A1=E5=9E=8B=E8=8A=82=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/flow/config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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}] } ], },