feat(web): memory-read、memory-write、iteration、assigner、tool node

This commit is contained in:
zhaoying
2026-01-05 16:18:04 +08:00
parent a66fb9eade
commit 3e71e4d15e
15 changed files with 849 additions and 63 deletions

View File

@@ -1562,14 +1562,17 @@ Memory Bear: After the rebellion, regional warlordism intensified for several re
loop: 'Loop',
'cycle-start': '',
break: 'Break Loop',
assigner: 'Variable Assignment',
parallel: 'Parallel Execution',
'var-aggregator': 'Variable Aggregator',
externalInteraction: 'External Interaction',
"http-request": 'HTTP Request',
tools: 'Tools',
tool: 'Tools',
code_execution: 'Code Execution',
"jinja-render": 'Template Rendering',
cognitiveUpgrading: 'Cognitive Upgrading (Innovation)',
'memory-read': 'Memory Retrieval',
'memory-write': 'Memory Storage',
task_planning: 'Task Planning',
reasoning_control: 'Reasoning Control',
self_reflection: 'Self Reflection',
@@ -1714,6 +1717,32 @@ Memory Bear: After the rebellion, regional warlordism intensified for several re
cycle_vars: 'Loop Variables',
condition: 'Loop Termination Condition',
},
assigner: {
assignments: 'Variables',
cover: 'Overwrite',
assign: 'Set',
clear: 'Clear'
},
iteration: {
input: 'Input Variable',
output: 'Output Variable',
parallel: 'Parallel Mode',
parallel_count: 'Max Parallelism',
flatten: 'Flatten Output',
},
tool: {
tool_id: 'Tool',
},
'memory-read': {
message: 'Message',
config_id: 'Memory Configuration',
search_switch: 'Search Mode',
},
'memory-write': {
message: 'Message',
config_id: 'Memory Configuration',
search_switch: 'Search Mode',
},
name: 'Key',
type: 'Type',
value: 'Value',

View File

@@ -1663,14 +1663,17 @@ export const zh = {
loop: '循环 (Loop)',
'cycle-start': '',
break: '退出循环',
assigner: '变量赋值',
parallel: '并行执行',
'var-aggregator': '变量聚合器',
externalInteraction: '外部交互',
"http-request": 'HTTP请求',
tools: '工具 (Tools)',
tool: '工具 (Tool)',
code_execution: '代码执行',
"jinja-render": '模板渲染',
cognitiveUpgrading: '认知升级(创新)',
'memory-read': '记忆提取',
'memory-write': '记忆储存',
task_planning: '任务规划',
reasoning_control: '推理控制',
self_reflection: '自我反思',
@@ -1815,6 +1818,32 @@ export const zh = {
cycle_vars: '循环变量',
condition: '循环终止条件',
},
assigner: {
assignments: '变量',
cover: '覆盖',
assign: '设置',
clear: '清空'
},
iteration: {
input: '输入变量',
output: '输出变量',
parallel: '并行模式',
parallel_count: '最大并行度',
flatten: '扁平化输出',
},
tool: {
tool_id: '工具',
},
'memory-read': {
message: '消息',
config_id: '记忆配置',
search_switch: '检索模式',
},
'memory-write': {
message: '消息',
config_id: '记忆配置',
search_switch: '检索模式',
},
name: '键',
type: '类型',
value: '值',