You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Resolve conflicts by preferring explicit data over inference
140
141
{_SUBAGENT_AUTOCLEAN_PROMPT}"""
142
+
_DAG_GUIDE_PROMPT="""## DAG Orchestration
143
+
DAG Orchestration automatically delegate subagents. When you have 2+ independent tasks that can run in parallel, or tasks with clear dependencies, prefer to use `orchestrate_tasks` to declare them all at once.
Copy file name to clipboardExpand all lines: dashboard/src/i18n/locales/en-US/features/subagent.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -97,6 +97,16 @@
97
97
"subtitle": "Add a new subagent to get started",
98
98
"action": "Create First Agent"
99
99
},
100
+
"dag": {
101
+
"orchestrationMode": "Orchestration Mode",
102
+
"orchestrationModeHint": "Choose the orchestration mode for subagent tasks. \"Default\" lets the LLM delegate tasks one by one manually; \"DAG Orchestration\" uses a directed acyclic graph (DAG) to manage task dependencies and parallel execution.",
103
+
"maxNodes": "DAG Max Task Nodes",
104
+
"maxNodesHint": "Maximum number of task nodes allowed in a single DAG orchestration",
105
+
"maxParallel": "DAG Max Parallel Per Layer",
106
+
"maxParallelHint": "Maximum parallel tasks per layer. If the layer has more nodes than the limit, they will be processed in batches",
107
+
"maxInjectLength": "DAG Predecessor Result Injection Length",
108
+
"maxInjectLengthHint": "Maximum character count when injecting predecessor task results into successor task context. Excess content will be truncated"
109
+
},
100
110
"enhancedSwitches": {
101
111
"enable": "Enable Dynamic Subagents",
102
112
"enableHint": "Enable dynamic subagent creation and management. When enabled, the main LLM can dynamically create subagents at runtime using create_subagent tools. Can coexist with static subagent orchestration.",
Copy file name to clipboardExpand all lines: dashboard/src/i18n/locales/ru-RU/features/subagent.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,16 @@
96
96
"subtitle": "Добавьте первого под-агента, чтобы начать",
97
97
"action": "Создать первого агента"
98
98
},
99
+
"dag": {
100
+
"orchestrationMode": "Режим оркестрации",
101
+
"orchestrationModeHint": "Выберите режим оркестрации задач субагентов. «По умолчанию» — LLM делегирует задачи вручную одну за другой; «DAG-оркестрация» — использует направленный ациклический граф (DAG) для управления зависимостями и параллельным выполнением.",
102
+
"maxNodes": "DAG: макс. число узлов",
103
+
"maxNodesHint": "Максимальное количество узлов задач в одной DAG-оркестрации",
104
+
"maxParallel": "DAG: макс. параллельных на слой",
105
+
"maxParallelHint": "Максимальное количество параллельных задач на один слой. Если узлов в слое больше лимита, они обрабатываются пакетами",
106
+
"maxInjectLength": "DAG: длина вставки результатов предшественников",
107
+
"maxInjectLengthHint": "Максимальное количество символов при вставке результатов предшествующих задач в контекст последующей задачи. Избыточное содержимое обрезается"
108
+
},
99
109
"enhancedSwitches": {
100
110
"enable": "Включить динамических субагентов",
101
111
"enableHint": "Включить динамическое создание и управление субагентами. При включении основной LLM может динамически создавать субагентов во время выполнения с помощью инструментов create_subagent. Может сосуществовать со статической оркестрацией субагентов.",
0 commit comments