mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 12:32: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)
17 lines
374 B
TypeScript
17 lines
374 B
TypeScript
import PageRank from '@/components/page-rank';
|
|
import { TagItems } from '../tag-item';
|
|
import { ChunkMethodItem, EmbeddingModelItem } from './common-item';
|
|
|
|
export function QAConfiguration() {
|
|
return (
|
|
<>
|
|
<EmbeddingModelItem></EmbeddingModelItem>
|
|
<ChunkMethodItem></ChunkMethodItem>
|
|
|
|
<PageRank></PageRank>
|
|
|
|
<TagItems></TagItems>
|
|
</>
|
|
);
|
|
}
|