mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Fix: Modify the text of the category operator form #4412 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
30 lines
745 B
TypeScript
30 lines
745 B
TypeScript
import LLMSelect from '@/components/llm-select';
|
|
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { Form } from 'antd';
|
|
import { IOperatorForm } from '../../interface';
|
|
|
|
const RewriteQuestionForm = ({ onValuesChange, form }: IOperatorForm) => {
|
|
const { t } = useTranslate('chat');
|
|
|
|
return (
|
|
<Form
|
|
name="basic"
|
|
labelCol={{ span: 4 }}
|
|
wrapperCol={{ span: 20 }}
|
|
onValuesChange={onValuesChange}
|
|
autoComplete="off"
|
|
form={form}
|
|
>
|
|
<Form.Item
|
|
name={'llm_id'}
|
|
label={t('model', { keyPrefix: 'chat' })}
|
|
tooltip={t('modelTip', { keyPrefix: 'chat' })}
|
|
>
|
|
<LLMSelect></LLMSelect>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default RewriteQuestionForm;
|