mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -133,6 +133,10 @@ export const initialRetrievalValues = {
|
||||
type: 'string',
|
||||
value: '',
|
||||
},
|
||||
json: {
|
||||
type: 'Array<Object>',
|
||||
value: [],
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
@ -83,6 +83,10 @@ function RetrievalForm({ node }: INextOperatorForm) {
|
||||
title: 'formalized_content',
|
||||
type: initialRetrievalValues.outputs.formalized_content.type,
|
||||
},
|
||||
{
|
||||
title: 'json',
|
||||
type: initialRetrievalValues.outputs.json.type,
|
||||
},
|
||||
];
|
||||
}, []);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user