Feat: Configure the relevant pipeline parameters on the dataset configuration page. (#17100)

This commit is contained in:
balibabu
2026-07-20 16:05:03 +08:00
committed by GitHub
parent e87008e26c
commit 9d850e782b
34 changed files with 2078 additions and 178 deletions

View File

@@ -199,6 +199,7 @@ export type BaseNodeData<TForm = any> = {
name: string; // operator name
color?: string;
form?: TForm;
operatorId?: string;
};
export type BaseNode<T = any> = Node<BaseNodeData<T>>;
@@ -301,6 +302,18 @@ export interface IPipeLineListRequest {
ext?: string;
}
export interface IBuiltinPipeline {
id: string;
title: string;
description?: string;
filename?: string;
}
export interface IBuiltinPipelineListResponse {
canvas: IBuiltinPipeline[];
total: number;
}
export interface GlobalVariableType {
name: string;
value: any;