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
Copy file name to clipboardExpand all lines: apps/website/content/docs/agent/concepts/agent-architecture.mdx
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -460,12 +460,8 @@ export class MultiAgentComponent {
460
460
</Tab>
461
461
</Tabs>
462
462
463
-
<Callouttype="warning"title="Subagent signal status">
464
-
Tool calls, tool progress, and tool results stream today. Dedicated `subagents()` and `activeSubagents()` tracking is planned for the next implementation phase; use `toolCalls()` and `toolProgress()` for current delegated-work visibility.
465
-
</Callout>
466
-
467
463
<Callouttype="tip"title="subagentToolNames is the key">
468
-
The `subagentToolNames` option will tell agent() which graph nodes are subagents. Until dedicated tracking lands, subagent execution appears through the regular tool-call and tool-progress signals.
464
+
The `subagentToolNames` option tells agent() which tool calls spawn subagents. The default Deep Agents tool name is `task`; set this option when your graph uses custom delegation tool names.
**Angular connection:**Dedicated subagent tracking is planned for the next implementation phase. Today, track delegated work through tool progress and tool results:
230
+
**Angular connection:**Track delegated work through dedicated subagent signals:
Copy file name to clipboardExpand all lines: apps/website/content/docs/agent/guides/subgraphs.mdx
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,6 @@ Subgraphs let you compose complex agents from smaller, focused units. agent() tr
6
6
LangGraph calls them subgraphs (modular graph composition). Deep Agents calls them subagents (task delegation). agent() supports both patterns through the same API.
Tool calls, tool progress, and tool results stream today. The `subagents()` / `activeSubagents()` examples below describe the planned Phase 2 API; until that lands, use `toolCalls()` and `toolProgress()` for visibility into delegated work.
11
-
</Callout>
12
-
13
9
## How subgraph composition works
14
10
15
11
Subgraph composition starts on the agent side. Each subgraph is a fully compiled `StateGraph` that can be added as a node in a parent graph.
0 commit comments