mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-31 17:15:32 +08:00
### What problem does this PR solve? Feat: Add a form with data operations operators #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -715,8 +715,23 @@ export const initialPlaceholderValues = {
|
||||
// It's just a visual placeholder
|
||||
};
|
||||
|
||||
export enum Operations {
|
||||
SelectKeys = 'select keys',
|
||||
LiteralEval = 'literal eval',
|
||||
Combine = 'combine',
|
||||
FilterValues = 'filter values',
|
||||
AppendOrUpdate = 'append or update',
|
||||
RemoveKeys = 'remove keys',
|
||||
RenameKeys = 'rename keys',
|
||||
}
|
||||
|
||||
export const initialDataOperationsValues = {
|
||||
outputs: {},
|
||||
operations: Operations.SelectKeys,
|
||||
outputs: {
|
||||
result: {
|
||||
type: 'Array<Object>',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export const CategorizeAnchorPointPositions = [
|
||||
|
||||
Reference in New Issue
Block a user