mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-16 22:51:24 +00:00
feat(awel): Support simple templates
This commit is contained in:
@@ -70,6 +70,8 @@ export type IFlowNodeParameter = {
|
||||
options?: any;
|
||||
value: any;
|
||||
is_list?: boolean;
|
||||
dynamic?: boolean;
|
||||
dynamic_minimum?: number;
|
||||
ui: IFlowNodeParameterUI;
|
||||
};
|
||||
|
||||
@@ -101,6 +103,8 @@ export type IFlowNodeInput = {
|
||||
optional?: boolean | undefined;
|
||||
value: any;
|
||||
is_list?: boolean;
|
||||
dynamic?: boolean;
|
||||
dynamic_minimum?: number;
|
||||
};
|
||||
|
||||
export type IFlowNodeOutput = {
|
||||
@@ -112,6 +116,8 @@ export type IFlowNodeOutput = {
|
||||
id: string;
|
||||
optional?: boolean | undefined;
|
||||
is_list?: boolean;
|
||||
dynamic?: boolean;
|
||||
dynamic_minimum?: number;
|
||||
};
|
||||
|
||||
export type IFlowNode = Node & {
|
||||
|
Reference in New Issue
Block a user