ActorCallNodeConfig
Settings that control Actor Call Node. The required field is actor.
actor objectrequired
Actor configuration for an agent node.
nameName (string)required
descriptionDescription (string)
Default value:
function object
anyOf
- PythonFunctionSchema
- null
sourceSource (string)required
inputs object
property name*any
Default value:
{}outputs object
property name*any
Default value:
{}dependenciesstring[]
Default value:
[]decorators object[]
Decorator bindings declared in configuration. Configured bindings take precedence over source bindings with the same kind and name; an empty list uses source bindings only.
Array [
decoratorDecorator (string)required
Decorator name, such as use_connector or use_llm. The name must identify a supported decorator.
nameName (string)required
Binding variable name injected into the namespace
arguments object
Decorator arguments, e.g. {'ref':...} or {'model':...}
property name*any
Decorator arguments, e.g. {'ref':...} or {'model':...}
]
confirmation_policyConfirmation Policy (string)
Possible values: [auto, confirm, deny]
Default value:
confirmoptions object
anyOf
- object
- null
object
input_mappings object
property name*string
outputs object
property name*any
Default value:
{}timeoutTimeout (integer)
Default value:
30ActorCallNodeConfig
{
"actor": {
"name": "string",
"description": "",
"function": {
"source": "string",
"inputs": {},
"outputs": {},
"dependencies": [
"string"
],
"decorators": [
{
"decorator": "string",
"name": "string",
"arguments": {}
}
]
},
"confirmation_policy": "confirm",
"options": {}
},
"input_mappings": {},
"outputs": {},
"timeout": 30
}