mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 00:46:52 +08:00
### What problem does this PR solve? feat: Add input parameter to begin operator #3355 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -100,3 +100,12 @@ export type NodeData = {
|
||||
};
|
||||
|
||||
export type IPosition = { top: number; right: number; idx: number };
|
||||
|
||||
export interface BeginQuery {
|
||||
key: string;
|
||||
type: string;
|
||||
value: string;
|
||||
optional: boolean;
|
||||
name: string;
|
||||
options: (number | string | boolean)[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user