mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: Add a note node to the agent canvas #2767 ### Type of change - [ ] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality) - [ ] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe):
34 lines
774 B
TypeScript
34 lines
774 B
TypeScript
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { Form, Input } from 'antd';
|
|
import { IOperatorForm } from '../../interface';
|
|
|
|
type FieldType = {
|
|
prologue?: string;
|
|
};
|
|
|
|
const BeginForm = ({ onValuesChange, form }: IOperatorForm) => {
|
|
const { t } = useTranslate('chat');
|
|
|
|
return (
|
|
<Form
|
|
name="basic"
|
|
labelCol={{ span: 8 }}
|
|
wrapperCol={{ span: 16 }}
|
|
onValuesChange={onValuesChange}
|
|
autoComplete="off"
|
|
form={form}
|
|
>
|
|
<Form.Item<FieldType>
|
|
name={'prologue'}
|
|
label={t('setAnOpener')}
|
|
tooltip={t('setAnOpenerTip')}
|
|
initialValue={t('setAnOpenerInitial')}
|
|
>
|
|
<Input.TextArea autoSize={{ minRows: 5 }} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default BeginForm;
|