|
|
@@ -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,
|