### 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)
24 lines
584 B
TypeScript
24 lines
584 B
TypeScript
import {
|
|
AutoKeywordsItem,
|
|
AutoQuestionsItem,
|
|
} from '@/components/auto-keywords-item';
|
|
import PageRank from '@/components/page-rank';
|
|
import { TagItems } from '../tag-item';
|
|
import { ChunkMethodItem, EmbeddingModelItem } from './common-item';
|
|
|
|
export function PictureConfiguration() {
|
|
return (
|
|
<>
|
|
<EmbeddingModelItem></EmbeddingModelItem>
|
|
<ChunkMethodItem></ChunkMethodItem>
|
|
|
|
<PageRank></PageRank>
|
|
|
|
<>
|
|
<AutoKeywordsItem></AutoKeywordsItem>
|
|
<AutoQuestionsItem></AutoQuestionsItem>
|
|
</>
|
|
<TagItems></TagItems>
|
|
</>
|
|
);
|
|
}
|