mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-04 06:40:29 +08:00
Feat: Configure the relevant pipeline parameters on the dataset configuration page. (#17100)
This commit is contained in:
@@ -2,34 +2,45 @@ import { FormLayout } from '@/constants/form';
|
||||
import { useTranslate } from '@/hooks/common-hooks';
|
||||
import { SliderInputFormField } from './slider-input-form-field';
|
||||
|
||||
export function AutoKeywordsFormField() {
|
||||
interface AutoFieldProps {
|
||||
name?: string;
|
||||
layout?: FormLayout;
|
||||
}
|
||||
|
||||
export function AutoKeywordsFormField({
|
||||
name = 'parser_config.auto_keywords',
|
||||
layout = FormLayout.Vertical,
|
||||
}: AutoFieldProps) {
|
||||
const { t } = useTranslate('knowledgeDetails');
|
||||
|
||||
return (
|
||||
<SliderInputFormField
|
||||
name={'parser_config.auto_keywords'}
|
||||
name={name}
|
||||
label={t('autoKeywords')}
|
||||
max={30}
|
||||
min={0}
|
||||
tooltip={t('autoKeywordsTip')}
|
||||
layout={FormLayout.Horizontal}
|
||||
layout={layout}
|
||||
sliderTestId="ds-settings-parser-auto-keyword-slider"
|
||||
numberInputTestId="ds-settings-parser-auto-keyword-input"
|
||||
></SliderInputFormField>
|
||||
);
|
||||
}
|
||||
|
||||
export function AutoQuestionsFormField() {
|
||||
export function AutoQuestionsFormField({
|
||||
name = 'parser_config.auto_questions',
|
||||
layout = FormLayout.Vertical,
|
||||
}: AutoFieldProps) {
|
||||
const { t } = useTranslate('knowledgeDetails');
|
||||
|
||||
return (
|
||||
<SliderInputFormField
|
||||
name={'parser_config.auto_questions'}
|
||||
name={name}
|
||||
label={t('autoQuestions')}
|
||||
max={10}
|
||||
min={0}
|
||||
tooltip={t('autoQuestionsTip')}
|
||||
layout={FormLayout.Horizontal}
|
||||
layout={layout}
|
||||
sliderTestId="ds-settings-parser-auto-question-slider"
|
||||
numberInputTestId="ds-settings-parser-auto-question-input"
|
||||
></SliderInputFormField>
|
||||
|
||||
Reference in New Issue
Block a user