We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a67441 commit ed08256Copy full SHA for ed08256
frontend/src/pages/configForm/configUi/components/mutiConversation.tsx
@@ -14,7 +14,7 @@ const MutiConversation = (props) => {
14
15
const options = [{ value: 'ByConversationTurn', label: t('byConversationTurn') }]
16
const defaultRecalls = {
17
- 1: '1', [3]: t('default'), 10: '10'
+ 1: '1', [3]: t('default'), 20: '20'
18
};
19
return <>
20
<div>
@@ -34,7 +34,7 @@ const MutiConversation = (props) => {
34
>
35
<Slider style={{ width: '95%', marginTop: 0 }} // 设置固定宽度
36
min={1}
37
- max={10}
+ max={20}
38
disabled={disabled}
39
defaultValue={3}
40
marks={defaultRecalls}
0 commit comments