mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-11 01:41:26 +08:00
Feat: Configure the relevant pipeline parameters on the dataset configuration page. (#17100)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user