Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions apps/docs/docs/dialects/agentfabric/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ The subagent node has these properties.
| `id` | The node identifier, defined next to the node type. | String | Yes |
| `label` | An optional short, human-readable display name for the node. | String | No |
| `description` | A CommonMark string providing a description of the node. | String | No |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | Yes |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | No |
| `llm` | Overrides the default LLM setting | @llm reference See [LLM Section](#llm-section) | No |
| `system.instructions` | Overrides the global `system.instructions` at the file root level | String | No |
| `reasoning.instructions` | Session-specific query or instructions for this particular node, typically containing user provided or user related context | String | Yes |
Expand Down Expand Up @@ -346,7 +346,7 @@ The orchestrator node has these properties.
| `id` | The node identifier, defined next to the node type. | String | Yes |
| `label` | An optional short, human-readable display name for the node. | String | No |
| `description` | A CommonMark string providing a description of the node. | String | No |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | Yes |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | No |
| `llm` | Overrides the default LLM setting | @llm reference See [LLM Section](#llm-section) | No |
| `system.instructions` | Overrides the global `system.instructions` at the file root level | String | No |
| `reasoning.instructions` | Session-specific query or instructions for this particular node, typically containing user provided or user related context | String | Yes |
Expand Down Expand Up @@ -376,7 +376,7 @@ The generator node has these properties.
| `id` | The node identifier, defined next to the node type. | String | Yes |
| `label` | An optional short, human-readable display name for the node. | String | No |
| `description` | A CommonMark string providing a description of the node. | String | No |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | Yes |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | No |
| `llm` | A reference to the LLM connection. | @llm reference See [LLM Section](#llm-section) | No |
| `system.instructions` | Overrides the global `system.instructions` at the file root level for this generator node. | String | No |
| `prompt` | Session-specific query or instructions for this particular node, typically containing user provided or user related context. | String | Yes |
Expand Down Expand Up @@ -405,7 +405,7 @@ The executor node has these properties.
| `id` | The node identifier, defined next to the node type. | String | Yes |
| `label` | An optional short, human-readable display name for the node. | String | No |
| `description` | A CommonMark string providing a description of the node. | String | No |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | Yes |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | No |
| `do` | Agent Script statements to execute | procedure | Yes |

### Router Node
Expand Down Expand Up @@ -434,6 +434,7 @@ The router node has these properties.
| `id` | The node identifier, defined next to the node type. | String | Yes |
| `label` | An optional short, human-readable display name for the node. | String | No |
| `description` | A CommonMark string providing a description of the node. | String | No |
| `on_exit` | A procedure that executes when the node execution finishes. | Procedure | No |
| `routes` | An array of condition and target pairs, plus an optional label field for UI. Must define at least one route. Each route contains: `target`, `when`, and optional `label`. | Array | Yes |
| `otherwise` | Defines a default transition when no route condition matches. Contains: `target`. | Object | Yes with `routes` |

Expand Down
Loading