49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
|
|
import React from 'react';
|
||
|
|
import { ConfigurationFormContainer } from './configuration-form-container';
|
||
|
|
import { ChunkMethodItem, EmbeddingModelItem } from './common-item';
|
||
|
|
import { Box, Typography } from '@mui/material';
|
||
|
|
|
||
|
|
export function EmailConfiguration() {
|
||
|
|
return (
|
||
|
|
<ConfigurationFormContainer>
|
||
|
|
<ChunkMethodItem />
|
||
|
|
<EmbeddingModelItem />
|
||
|
|
|
||
|
|
<Box sx={{ mb: 2 }}>
|
||
|
|
<Typography variant="body2" color="text.secondary">
|
||
|
|
PageRank配置 - 待实现
|
||
|
|
</Typography>
|
||
|
|
</Box>
|
||
|
|
|
||
|
|
<Box sx={{ mb: 2 }}>
|
||
|
|
<Typography variant="body2" color="text.secondary">
|
||
|
|
自动关键词配置 - 待实现
|
||
|
|
</Typography>
|
||
|
|
</Box>
|
||
|
|
|
||
|
|
<Box sx={{ mb: 2 }}>
|
||
|
|
<Typography variant="body2" color="text.secondary">
|
||
|
|
自动问题配置 - 待实现
|
||
|
|
</Typography>
|
||
|
|
</Box>
|
||
|
|
|
||
|
|
<Box sx={{ mb: 2 }}>
|
||
|
|
<Typography variant="body2" color="text.secondary">
|
||
|
|
Raptor配置 - 待实现
|
||
|
|
</Typography>
|
||
|
|
</Box>
|
||
|
|
|
||
|
|
<Box sx={{ mb: 2 }}>
|
||
|
|
<Typography variant="body2" color="text.secondary">
|
||
|
|
GraphRAG配置 - 待实现
|
||
|
|
</Typography>
|
||
|
|
</Box>
|
||
|
|
|
||
|
|
<Box sx={{ mb: 2 }}>
|
||
|
|
<Typography variant="body2" color="text.secondary">
|
||
|
|
标签配置 - 待实现
|
||
|
|
</Typography>
|
||
|
|
</Box>
|
||
|
|
</ConfigurationFormContainer>
|
||
|
|
);
|
||
|
|
}
|