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