본문으로 건너뛰기

WorkflowNode

Workflow node.

idId (string)필수

Unique node ID

typeType (string)필수

Node type

Possible values: [start, end, llm, tool_call, actor_call, if_else, loop, parallel, human_input, error_handler, code, template, variable]

config object필수

Type-specific node configuration

하나 이상(anyOf)
variables object[]
  • Array [
  • nameName (string)필수
    typeType (string)필수

    Possible values: [string, number, boolean, object, array]

    requiredRequired (boolean)
    기본값: true
    defaultDefault
    descriptionDescription (string)
    기본값:
  • ]
  • metadata object
    property name*any
    기본값: {}
    WorkflowNode
    {
    "id": "string",
    "type": "start",
    "config": {
    "variables": [
    {
    "name": "string",
    "type": "string",
    "required": true,
    "description": ""
    }
    ]
    },
    "metadata": {}
    }