Skip to main content

ArtifactInputConfig

Configuration for explicit artifact wiring between pipeline steps.

Replaces convention-based wiring with explicit declarations.

nameName (string)required

Input artifact name expected by this step's template

Examples:
Example: input-text
from_stepFrom Step (string)required

Name of the step that produces this artifact

Examples:
Example: ocr
from_artifactFrom Artifact (string)required

Output artifact name from the source step

Examples:
Example: output-markdown
ArtifactInputConfig
{
"from_artifact": "output-markdown",
"from_step": "ocr",
"name": "input-text"
}