### What problem does this PR solve? Feat: Add data set configuration form #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
13 lines
346 B
TypeScript
13 lines
346 B
TypeScript
import PageRankFormField from '@/components/page-rank-form-field';
|
|
import { ChunkMethodItem, EmbeddingModelItem } from './common-item';
|
|
|
|
export function TableConfiguration() {
|
|
return (
|
|
<>
|
|
<EmbeddingModelItem></EmbeddingModelItem>
|
|
<ChunkMethodItem></ChunkMethodItem>
|
|
|
|
<PageRankFormField></PageRankFormField>
|
|
</>
|
|
);
|
|
}
|