Input Templating System
Block Definition Model
Block Structure
interface Block {
// Input field definitions
inputs: {
[key: string]: {
type: string;
required: boolean;
description: string;
};
};
// Output field definitions
outputs: {
[key: string]: {
type: string;
description: string;
};
};
}Frontend Implementation
Workflow Hierarchy
Backend Processing
Kafka Workflow Task
Template Resolution Process
Implementation Example
Sample Workflow
Best Practices
Tips for Template Usage
Last updated


