diff --git a/script/sql/update/2025-09-30-work-flow.sql b/script/sql/update/2025-09-30-流程编排.sql similarity index 94% rename from script/sql/update/2025-09-30-work-flow.sql rename to script/sql/update/2025-09-30-流程编排.sql index 59538259..747d73e3 100644 --- a/script/sql/update/2025-09-30-work-flow.sql +++ b/script/sql/update/2025-09-30-流程编排.sql @@ -122,39 +122,39 @@ values (replace(uuid(), '-', ''), 'End', '结束', '流程由此结束', true); insert into t_workflow_component(uuid, name, title, remark, is_enable) values (replace(uuid(), '-', ''), 'Answer', '生成回答', '调用大语言模型回答问题', true); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) -values (replace(uuid(), '-', ''), 'Dalle3', 'DALL-E 3 画图', '调用Dall-e-3生成图片', 11, true); +values (replace(uuid(), '-', ''), 'Dalle3', 'DALL-E 3 画图', '调用Dall-e-3生成图片', 11, false); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) -values (replace(uuid(), '-', ''), 'DocumentExtractor', '文档提取', '从文档中提取信息', 4, true); +values (replace(uuid(), '-', ''), 'DocumentExtractor', '文档提取', '从文档中提取信息', 4, false); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) values (replace(uuid(), '-', ''), 'KeywordExtractor', '关键词提取', - '从内容中提取关键词,Top N指定需要提取的关键词数量', 5, true); + '从内容中提取关键词,Top N指定需要提取的关键词数量', 5, false); insert into t_workflow_component(uuid, name, title, remark, is_enable) values (replace(uuid(), '-', ''), 'KnowledgeRetrieval', '知识检索', '从知识库中检索信息,需选中知识库', true); insert into t_workflow_component(uuid, name, title, remark, is_enable) -values (replace(uuid(), '-', ''), 'Switcher', '条件分支', '根据设置的条件引导执行不同的流程', true); +values (replace(uuid(), '-', ''), 'Switcher', '条件分支', '根据设置的条件引导执行不同的流程', false); insert into t_workflow_component(uuid, name, title, remark, is_enable) values (replace(uuid(), '-', ''), 'Classifier', '内容归类', - '使用大语言模型对输入信息进行分析并归类,根据类别调用对应的下游节点', true); + '使用大语言模型对输入信息进行分析并归类,根据类别调用对应的下游节点', false); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) values (replace(uuid(), '-', ''), 'Template', '模板转换', '将多个变量合并成一个输出内容', 10, true); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) -values (replace(uuid(), '-', ''), 'Google', 'Google搜索', '从Google中检索信息', 13, true); +values (replace(uuid(), '-', ''), 'Google', 'Google搜索', '从Google中检索信息', 13, false); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) values (replace(uuid(), '-', ''), 'FaqExtractor', '常见问题提取', '从内容中提取出常见问题及对应的答案,Top N为提取的数量', - 6, true); + 6, false); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) -values (replace(uuid(), '-', ''), 'Tongyiwanx', '通义万相-画图', '调用文生图模型生成图片', 12, true); +values (replace(uuid(), '-', ''), 'Tongyiwanx', '通义万相-画图', '调用文生图模型生成图片', 12, false); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) values (replace(uuid(), '-', ''), 'HumanFeedback', '人机交互', - '中断执行中的流程并等待用户的输入,用户输入后继续执行后续流程', 10, true); + '中断执行中的流程并等待用户的输入,用户输入后继续执行后续流程', 10, false); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) -values (replace(uuid(), '-', ''), 'MailSend', '邮件发送', '发送邮件到指定邮箱', 10, true); +values (replace(uuid(), '-', ''), 'MailSend', '邮件发送', '发送邮件到指定邮箱', 10, false); insert into t_workflow_component(uuid, name, title, remark, display_order, is_enable) values (replace(uuid(), '-', ''), 'HttpRequest', 'Http请求', - '通过Http协议发送请求,可将其他组件的输出作为参数,也可设置常量作为参数。', 10, true); + '通过Http协议发送请求,可将其他组件的输出作为参数,也可设置常量作为参数。', 10, false); INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query_param, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (1976160997656043521, '流程管理', 0, 1, 'flow', '', null, 1, 0, 'M', '0', '0', null, 'ph:user-fill', null, null, '2025-10-09 13:41:12', 1, '2025-10-20 20:59:25', '');