wecisecode há 1 dia atrás
pai
commit
f1dc6242fc
1 ficheiros alterados com 6 adições e 4 exclusões
  1. 6 4
      chat/api/api.go

+ 6 - 4
chat/api/api.go

@@ -125,10 +125,12 @@ func Request(context []int64, msg string) Result {
 
 		// 创建请求体
 		requestData := GenerateRequest{
-			Model:   "deepseek-r1:7b", // 使用的模型名称
-			Prompt:  msg,              // 输入的提示
-			Stream:  true,             // 流式响应
-			Context: context,          // 上下文
+			// Model:   "deepseek-r1:7b", // 使用的模型名称
+			// Model:   "qwen3-coder:480b-cloud",
+			Model:   "deepseek-v3.1:671b-cloud",
+			Prompt:  msg,     // 输入的提示
+			Stream:  true,    // 流式响应
+			Context: context, // 上下文
 			Options: GenerateRequestOptions{
 				Seed: 54321,
 			},