|
@@ -131,7 +131,7 @@ const QuestionAnswerInfo: React.FC = () => {
|
|
|
const [isVisible, setIsVisible] = React.useState(true);
|
|
const [isVisible, setIsVisible] = React.useState(true);
|
|
|
const [isVisibleCus, setIsVisibleCus] = React.useState(false);
|
|
const [isVisibleCus, setIsVisibleCus] = React.useState(false);
|
|
|
const [isVisibleSlice, setIsVisibleSlice] = React.useState(false);
|
|
const [isVisibleSlice, setIsVisibleSlice] = React.useState(false);
|
|
|
- const [isVisibleRerank, setIsVisibleRerank] = React.useState(false);
|
|
|
|
|
|
|
+ const [isVisibleRerank, setIsVisibleRerank] = React.useState(true);
|
|
|
const [isDeepThinkVisible, setIsDeepThinkVisible] = React.useState(false);
|
|
const [isDeepThinkVisible, setIsDeepThinkVisible] = React.useState(false);
|
|
|
const [name, setName] = React.useState('');
|
|
const [name, setName] = React.useState('');
|
|
|
const [appTypeList, setAppTypeList] = React.useState<AppTypeList>([]);
|
|
const [appTypeList, setAppTypeList] = React.useState<AppTypeList>([]);
|
|
@@ -721,9 +721,15 @@ const QuestionAnswerInfo: React.FC = () => {
|
|
|
form={form}
|
|
form={form}
|
|
|
layout='vertical'
|
|
layout='vertical'
|
|
|
initialValues={{
|
|
initialValues={{
|
|
|
- isDeepThink: 'Y',
|
|
|
|
|
|
|
+ isDeepThink: 'N',
|
|
|
max_token: 4096,
|
|
max_token: 4096,
|
|
|
|
|
+ model:'Qwen3-30B',
|
|
|
|
|
+ show_recall_result: true,
|
|
|
|
|
+ rerank_model_name:'rerank',
|
|
|
|
|
+ slice_config_type:'customized',
|
|
|
|
|
+ rerank_status: true,
|
|
|
param_desc:'strict',
|
|
param_desc:'strict',
|
|
|
|
|
+ recall_method:'mixed'
|
|
|
}}
|
|
}}
|
|
|
>
|
|
>
|
|
|
<div style={{ display: step === 1 ? 'block' : 'none' }} className='questionAnswerInfo-content'>
|
|
<div style={{ display: step === 1 ? 'block' : 'none' }} className='questionAnswerInfo-content'>
|