Kaynağa Gözat

小智模型

huiqi 6 saat önce
ebeveyn
işleme
2d78fadcf2
1 değiştirilmiş dosya ile 3 ekleme ve 2 silme
  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,