huiqi il y a 5 heures
Parent
commit
2d78fadcf2
1 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 3 2
      app/client/platforms/deepSeek.ts

+ 3 - 2
app/client/platforms/deepSeek.ts

@@ -23,7 +23,7 @@ export class DeepSeekApi implements LLMApi {
     // this.baseURL = 'http://192.168.3.209:18078';
     this.baseURL = '/deepseek-api';
     this.apiPath = this.baseURL + '/vllm/ai/chat';//线上地址
-    // this.apiPath = this.baseURL + '/vllm/chat'; // 测试地址 
+    // this.apiPath = this.baseURL + '/vllm/chat'; // 测试地址
   }
 
   async chat(options: ChatOptions) {
@@ -63,7 +63,8 @@ export class DeepSeekApi implements LLMApi {
     // 参数
     const params = {
       // model: 'DeepSeek-R1-Distill-Qwen-14B',
-      model: 'Qwen3-30B',
+      // model: 'Qwen3-30B',
+      model: 'Qwen3-30B-vl-chat',
       enable_think: isDeepThink,
       messages: userMessages,
       stream: true,