|
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> |
|
</> |
|
); |
|
} |
|
|