Skip to content

Commit ed08256

Browse files
committed
[frontend] 多轮对话上限改为20
1 parent 8a67441 commit ed08256

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/pages/configForm/configUi/components/mutiConversation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const MutiConversation = (props) => {
1414

1515
const options = [{ value: 'ByConversationTurn', label: t('byConversationTurn') }]
1616
const defaultRecalls = {
17-
1: '1', [3]: t('default'), 10: '10'
17+
1: '1', [3]: t('default'), 20: '20'
1818
};
1919
return <>
2020
<div>
@@ -34,7 +34,7 @@ const MutiConversation = (props) => {
3434
>
3535
<Slider style={{ width: '95%', marginTop: 0 }} // 设置固定宽度
3636
min={1}
37-
max={10}
37+
max={20}
3838
disabled={disabled}
3939
defaultValue={3}
4040
marks={defaultRecalls}

0 commit comments

Comments
 (0)