From 06cd48986b261c044608a7ab626ac09cbe25ff80 Mon Sep 17 00:00:00 2001 From: 10191 <506754232@qq.com> Date: Sun, 10 May 2026 17:14:57 +0800 Subject: [PATCH] 11 --- HJGL_DS/BLL/Common/OpenAIhelper.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HJGL_DS/BLL/Common/OpenAIhelper.cs b/HJGL_DS/BLL/Common/OpenAIhelper.cs index 4cea0a4..ef2c4e0 100644 --- a/HJGL_DS/BLL/Common/OpenAIhelper.cs +++ b/HJGL_DS/BLL/Common/OpenAIhelper.cs @@ -14,8 +14,8 @@ namespace BLL.Common { public class OpenAIhelper { - private const string ApiKey = "sk-ee51958b5a4f4136b01ad4d866e1ba94"; - private const string AIURL = "https://dashscope.aliyuncs.com/compatible-mode/v1/chat/completions"; + private const string ApiKey = "sk-a5014a22a49049d1b2179a6c0d8eec1c"; + private const string AIURL = "https://api.deepseek.com/anthropic"; public static string ChatCompletion(string content) { @@ -27,7 +27,7 @@ namespace BLL.Common var requestData = new { - model = "qwen3.6-plus", + model = "deepseek-v4-flash", messages = new[] { new { role = "user", content = content } },