feat: add llm Select to KeywordExtractForm #918 (#1492)

### What problem does this PR solve?

feat: add llm Select to KeywordExtractForm #918

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-07-12 17:22:01 +08:00
committed by GitHub
parent a5a617b7a3
commit 0c9a7caa9d
8 changed files with 42 additions and 7 deletions

View File

@ -5,14 +5,18 @@ type FieldType = {
top_n?: number;
};
const TopNItem = () => {
interface IProps {
initialValue?: number;
}
const TopNItem = ({ initialValue = 8 }: IProps) => {
const { t } = useTranslate('chat');
return (
<Form.Item<FieldType>
label={t('topN')}
name={'top_n'}
initialValue={8}
initialValue={initialValue}
tooltip={t('topNTip')}
>
<Slider max={30} />