mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Put the configuration of different parsing methods into separate components. #5467 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
9
web/src/utils/dataset-util.ts
Normal file
9
web/src/utils/dataset-util.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import { DocumentParserType } from '@/constants/knowledge';
|
||||
|
||||
export function isKnowledgeGraphParser(parserId: DocumentParserType) {
|
||||
return parserId === DocumentParserType.KnowledgeGraph;
|
||||
}
|
||||
|
||||
export function isNaiveParser(parserId: DocumentParserType) {
|
||||
return parserId === DocumentParserType.Naive;
|
||||
}
|
||||
Reference in New Issue
Block a user