feat(agents): improve processor creation choice

This commit is contained in:
RockChinQ
2026-08-27 14:31:37 +08:00
parent 823feac7e0
commit 847bfc8df5
6 changed files with 558 additions and 31 deletions
+24
View File
@@ -724,6 +724,30 @@ const jaJP = {
'ビジュアルな多段フローで、メッセージの前処理、AI、後処理、拡張、出力を制御します。メッセージイベントのみ処理できます。',
allEvents: 'すべてのイベントに対応',
messageEventsOnly: 'メッセージイベントのみ',
chooseType: '処理方法を選択',
chooseTypeDescription:
'最初にプロセッサーの動作方式を選びます。作成後に詳しく設定できます。',
diagramHint: '動作イメージ',
agentDiagramTitle: 'Agent:判断して行動',
agentDiagramDescription:
'Agent はさまざまなプラットフォームイベントを受け取り、モデルやツールを使って状況を理解し、次の行動を判断します。',
pipelineDiagramTitle: 'Pipeline:決めたフローで処理',
pipelineDiagramDescription:
'Pipeline はメッセージイベントのみを、設定した固定ステップの順番で処理します。',
pipelineDiagramFlow: 'メッセージを固定フローで順番に処理',
diagramEvents: 'イベント',
diagramMessages: 'メッセージ',
diagramMembers: 'メンバー',
diagramFeedback: 'フィードバック',
diagramDecide: '理解して判断',
diagramModel: 'モデル',
diagramTools: 'ツール',
diagramActions: 'アクション',
diagramMessage: 'メッセージ',
diagramPreprocess: '前処理',
diagramAI: 'AI',
diagramPostprocess: '後処理',
diagramOutput: '出力',
basicInfo: '基本情報',
basicInfoDescription: '名前、アイコン、説明を設定します',
runnerSettings: 'Runner',