6 changed files with 275 additions and 199 deletions
@ -1,186 +1,237 @@ |
|||
{ |
|||
"bidConsistencyReview": { |
|||
"taskType": "bidConsistencyReview", |
|||
"name": "投标文件综合分析", |
|||
"mode": "tabs", |
|||
"tabs": [ |
|||
{ |
|||
"key": "文档元数据", |
|||
"label": "文档元数据", |
|||
"fields": [ |
|||
{ |
|||
"field": "originalText", |
|||
"title": "文档名称", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "bid", |
|||
"required": true |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "详细元数据信息", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": ["review_content", "review_points"], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
"bidConsistencyReview": { |
|||
"taskType": "bidConsistencyReview", |
|||
"name": "投标文件综合分析", |
|||
"mode": "tabs", |
|||
"tabs": [ |
|||
{ |
|||
"key": "文档元数据", |
|||
"label": "文档元数据", |
|||
"fields": [ |
|||
{ |
|||
"field": "originalText", |
|||
"title": "文档名称", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "bid", |
|||
"required": true |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "详细元数据信息", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": [ |
|||
"review_content", |
|||
"review_points" |
|||
], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"key": "重点关注相似内容", |
|||
"label": "重点关注相似内容", |
|||
"fields": [ |
|||
|
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "各文档具体内容", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": ["review_points"], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
}, |
|||
"showComparison": true, |
|||
"comparisonConfig": { |
|||
"comparisonField": "modificationDisplay", |
|||
"comparisonTitle": "修改情况展示", |
|||
"showButton": true |
|||
} |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "错别字", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": ["error_review_points"], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"error_review_points": "arrayJoinNewLine" |
|||
} |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"key": "公司人员信息", |
|||
"label": "公司人员信息", |
|||
"fields": [ |
|||
{ |
|||
"field": "issueName", |
|||
"title": "文档名称", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "bid", |
|||
"required": true |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "公司人员信息详情", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": [ |
|||
"review_points" |
|||
], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"key": "错别字", |
|||
"label": "错别字", |
|||
"fields": [ |
|||
{ |
|||
"field": "originalText", |
|||
"title": "文档1原文", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "bid", |
|||
"required": true |
|||
}, |
|||
{ |
|||
"field": "comparedText", |
|||
"title": "文档2原文", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "bid", |
|||
"required": true |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"key": "重点关注相似内容", |
|||
"label": "重点关注相似内容", |
|||
"fields": [ |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "各文档具体内容", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": [ |
|||
"review_points" |
|||
], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
}, |
|||
|
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "错误详情", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": ["review_content", "review_points"], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoin" |
|||
} |
|||
"showComparison": true, |
|||
"comparisonConfig": { |
|||
"comparisonField": "modificationDisplay", |
|||
"comparisonTitle": "修改情况展示", |
|||
"showButton": true |
|||
} |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "错别字", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": [ |
|||
"error_review_points" |
|||
], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"error_review_points": "arrayJoinNewLine" |
|||
} |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"key": "一般相似内容", |
|||
"label": "一般相似内容", |
|||
"fields": [ |
|||
{ |
|||
"field": "modificationDisplay", |
|||
"title": "涉及文档", |
|||
"dataType": "string", |
|||
"displayType": "markdown" |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "各文档具体内容", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": ["review_content", "review_points"], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
} |
|||
] |
|||
}, |
|||
{ |
|||
"key": "一般相似内容", |
|||
"label": "一般相似内容", |
|||
"fields": [ |
|||
{ |
|||
"field": "modificationDisplay", |
|||
"title": "涉及文档", |
|||
"dataType": "string", |
|||
"displayType": "markdown" |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "各文档具体内容", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": [ |
|||
"review_content", |
|||
"review_points" |
|||
], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
} |
|||
] |
|||
} |
|||
] |
|||
} |
|||
] |
|||
}, |
|||
"tenderComplianceReview": { |
|||
"taskType": "tenderComplianceReview", |
|||
"name": "招投标文件合规性审核", |
|||
"mode": "single", |
|||
"pdfConfig": { |
|||
"layout": "single", |
|||
"sources": [ |
|||
{ |
|||
"id": "document", |
|||
"title": "投标文件", |
|||
"apiField": "id" |
|||
} |
|||
] |
|||
}, |
|||
"tenderComplianceReview": { |
|||
"taskType": "tenderComplianceReview", |
|||
"name": "招投标合规性审查", |
|||
"mode": "single", |
|||
"fields": [ |
|||
{ |
|||
"field": "originalText", |
|||
"title": "原文", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "bid", |
|||
"required": true |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "审查意见", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": ["review_content"], |
|||
"separator": ":" |
|||
"fields": [ |
|||
{ |
|||
"field": "issueName", |
|||
"title": "合规性分类-具体问题(示例:资质审查-业绩要求)", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "document" |
|||
}, |
|||
{ |
|||
"field": "originalText", |
|||
"title": "原文", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "document" |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "相关法律法规政策", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": [ |
|||
"review_points" |
|||
], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "审查要点", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": ["review_points"], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
"field": "modifiedContent", |
|||
"title": "修改建议", |
|||
"dataType": "string", |
|||
"displayType": "markdown", |
|||
"pdfSource": "document" |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "风险等级(红色预警:直接废标项,橙色风险:可能引发投诉项)", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": [ |
|||
"risk_level" |
|||
], |
|||
"separator": ":" |
|||
} |
|||
} |
|||
] |
|||
}, |
|||
"bidImageAnalysis": { |
|||
"taskType": "bidImageAnalysis", |
|||
"name": "招标文件图片相似度分析", |
|||
"mode": "single", |
|||
"fields": [ |
|||
{ |
|||
"field": "originalText", |
|||
"title": "图片1路径", |
|||
"dataType": "string", |
|||
"displayType": "markdown" |
|||
}, |
|||
{ |
|||
"field": "comparedText", |
|||
"title": "图片2路径", |
|||
"dataType": "string", |
|||
"displayType": "markdown" |
|||
}, |
|||
{ |
|||
"field": "reviewBasis", |
|||
"title": "页码", |
|||
"dataType": "json", |
|||
"displayType": "markdown", |
|||
"jsonConfig": { |
|||
"extractFields": [ |
|||
"review_points" |
|||
], |
|||
"separator": ":", |
|||
"fieldProcessors": { |
|||
"review_points": "arrayJoinNewLine" |
|||
} |
|||
}, |
|||
{ |
|||
"field": "modifiedContent", |
|||
"title": "修改建议", |
|||
"dataType": "string", |
|||
"displayType": "markdown" |
|||
}, |
|||
{ |
|||
"field": "modificationDisplay", |
|||
"title": "修改情况", |
|||
"dataType": "string", |
|||
"displayType": "markdown" |
|||
} |
|||
] |
|||
} |
|||
} |
|||
} |
|||
] |
|||
} |
|||
} |
Loading…
Reference in new issue