add_ai_connections
Integrates AI components like models, tools, and memory nodes into a specified workflow by connecting them to an agent node for enhanced automation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agent_node_id | Yes | The ID of the agent node that will use the model and tools | |
memory_node_id | No | The ID of the memory node (optional) | |
model_node_id | No | The ID of the language model node (optional) | |
tool_node_ids | No | Array of tool node IDs to connect to the agent (optional) | |
workflow_name | Yes | The Name of the workflow to add the AI connections to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"agent_node_id": {
"description": "The ID of the agent node that will use the model and tools",
"type": "string"
},
"memory_node_id": {
"description": "The ID of the memory node (optional)",
"type": "string"
},
"model_node_id": {
"description": "The ID of the language model node (optional)",
"type": "string"
},
"tool_node_ids": {
"description": "Array of tool node IDs to connect to the agent (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"workflow_name": {
"description": "The Name of the workflow to add the AI connections to",
"type": "string"
}
},
"required": [
"workflow_name",
"agent_node_id"
],
"type": "object"
}