Skip to content

Output

Universal display and inspect node for debugging and workflow I/O.

1 modules

ModuleDescription
Display OutputUniversal inspect/display/IO node — debug data, render output, or define workflow I/O

Modules

Display Output

output.display

Universal inspect/display/IO node — debug data, render output, or define workflow I/O

Parameters:

NameTypeRequiredDefaultDescription
typeselect (auto, image, text, json, html, pdf, file)NoautoDisplay type (auto-detected if not specified)
contentstringYes-Content to display (data URI, text, JSON, or HTML)
titlestringNo-Optional title for the display item
modeselect (display, output, input)NodisplayNode mode: display for inspection, output for workflow results, input for receiving data
output_keystringNoresultKey name when used as workflow output

Output:

FieldTypeDescription
typestringResolved display type
titlestringDisplay title
content['string', 'object', 'array']Display content
modestringNode mode (display/output/input)
validation_warningstringContent validation warning (if any)

Example: Display an image

yaml
type: image
content: data:image/png;base64,...
title: Generated Image

Example: Display text

yaml
type: text
content: Hello World
title: Result

Example: Display JSON data

yaml
type: json
content: {"name": "test", "value": 42}
title: API Response

Example: Workflow output

yaml
type: auto
content: ${step.output}
mode: output
output_key: result

Released under the Apache 2.0 License.