mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-20 12:56:55 +08:00
feat: fixed the issue where chat greetings could not appear (#95)
This commit is contained in:
@ -28,8 +28,8 @@ const segmentedMap = {
|
||||
};
|
||||
|
||||
const layout = {
|
||||
labelCol: { span: 6 },
|
||||
wrapperCol: { span: 18 },
|
||||
labelCol: { span: 7 },
|
||||
wrapperCol: { span: 17 },
|
||||
};
|
||||
|
||||
const validateMessages = {
|
||||
|
||||
@ -162,8 +162,13 @@ const PromptEngine = (
|
||||
<Input.TextArea autoSize={{ maxRows: 8, minRows: 5 }} />
|
||||
</Form.Item>
|
||||
<Divider></Divider>
|
||||
<SimilaritySlider></SimilaritySlider>
|
||||
<Form.Item<FieldType> label="Top n" name={'top_n'} initialValue={0}>
|
||||
<SimilaritySlider isTooltipShown></SimilaritySlider>
|
||||
<Form.Item<FieldType>
|
||||
label="Top n"
|
||||
name={'top_n'}
|
||||
initialValue={8}
|
||||
tooltip={'xxx'}
|
||||
>
|
||||
<Slider max={30} />
|
||||
</Form.Item>
|
||||
<section className={classNames(styles.variableContainer)}>
|
||||
|
||||
Reference in New Issue
Block a user