Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions modules/tool/packages/mineru/children/parseRemote/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default defineTool({
{
key: 'files',
label: 'files',
renderTypeList: [FlowNodeInputTypeEnum.fileSelect, FlowNodeInputTypeEnum.reference],
renderTypeList: [FlowNodeInputTypeEnum.reference, FlowNodeInputTypeEnum.input],
valueType: WorkflowIOValueTypeEnum.arrayString,
required: true,
description:
Expand Down Expand Up @@ -116,14 +116,8 @@ export default defineTool({
renderTypeList: [FlowNodeInputTypeEnum.multipleSelect],
valueType: WorkflowIOValueTypeEnum.arrayString,
required: false,
description:
'指定额外格式,markdown、json为默认导出格式,无须设置,该参数仅支持docx、html、latex三种格式中的一个或多个',
defaultValue: [],
list: [
{ label: 'docx', value: 'docx' },
{ label: 'html', value: 'html' },
{ label: 'latex', value: 'latex' }
]
list: [{ label: 'html', value: 'html' }]
}
],
outputs: [
Expand Down
Loading