### 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)
16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import PageRank from '@/components/page-rank';
|
|
import { TagItems } from '../tag-item';
|
|
import { ChunkMethodItem, EmbeddingModelItem } from './common-item';
|
|
|
|
export function ResumeConfiguration() {
|
|
return (
|
|
<>
|
|
<EmbeddingModelItem></EmbeddingModelItem>
|
|
<ChunkMethodItem></ChunkMethodItem>
|
|
|
|
<PageRank></PageRank>
|
|
|
|
<TagItems></TagItems>
|
|
</>
|
|
);
|
|
}
|