sunsheng 3 veckor sedan
förälder
incheckning
12e67ce655
2 ändrade filer med 6 tillägg och 6 borttagningar
  1. 2 2
      env/.env.development
  2. 4 4
      src/pages/deepseek/questionAnswer/info/index.tsx

+ 2 - 2
env/.env.development

@@ -2,8 +2,8 @@
 VITE_ENV = 'development'
 
 # Api地址
-VITE_API_URL = 'http://172.16.30.146:8090'
-VITE_API_URL_img = 'http://172.16.30.146:8090'
+VITE_API_URL = 'http://192.168.3.19:8090'
+VITE_API_URL_img = 'http://192.168.3.19:8090'
 # VITE_API_URL = 'http://xia0miduo.gicp.net:8041'
 # VITE_API_URL = 'http://192.168.3.3:8091'
 # VITE_API_URL_img = 'http://192.168.3.3'

+ 4 - 4
src/pages/deepseek/questionAnswer/info/index.tsx

@@ -798,7 +798,7 @@ const QuestionAnswerInfo: React.FC = () => {
                         initialValues={{
                             isDeepThink: 'N',
                             max_token: 4096,
-                            model:'Qwen3-30B',
+                            model:'Qwen3-30B-vl-chat',
                             show_recall_result: true,
                             rerank_model_name:'rerank',
                             slice_config_type:'customized',
@@ -1117,14 +1117,14 @@ const QuestionAnswerInfo: React.FC = () => {
                                                         className='form-element-select'
                                                         onChange={(value) => {
                                                             if (value === 'Qwen3-30B') {
-                                                                setIsDeepThinkVisible(true);
+                                                                setIsDeepThinkVisible(false);
                                                             } else {
                                                                 setIsDeepThinkVisible(false);
                                                             }
                                                         }}
                                                     >
-                                                        <Option value='Qwen3-30B'>Qwen3-30B</Option>
-                                                        <Option value='Qwen2-72B'>Qwen2-72B</Option>
+                                                        <Option value='Qwen3-30B-vl-chat'>Qwen3-30B-vl-chat</Option>
+                                                        {/* <Option value='Qwen2-72B'>Qwen2-72B</Option> */}
                                                     </Select>
 
                                                 </FormItem>