create_flow
Design and initiate new automation workflows on HiveFlow using the create_flow tool. Define workflow names, descriptions, and optional nodes for streamlined task execution.
Instructions
Crea un nuevo flujo de trabajo en HiveFlow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Descripción del flujo | |
name | Yes | Nombre del flujo | |
nodes | No | Nodos del flujo (opcional) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Descripción del flujo",
"type": "string"
},
"name": {
"description": "Nombre del flujo",
"type": "string"
},
"nodes": {
"description": "Nodos del flujo (opcional)",
"items": {
"type": "object"
},
"type": "array"
}
},
"required": [
"name",
"description"
],
"type": "object"
}