From 2f1f25ca37be22ce9e2fb6e92f6eae0d48ffdc9a Mon Sep 17 00:00:00 2001 From: ccnetcore Date: Thu, 8 Jan 2026 22:39:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=E5=85=8D=E8=B4=B9?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E9=BB=98=E8=AE=A4ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 FreeModelId 从 DeepSeek-V3 调整为 DeepSeek-V3-0324,确保使用最新可用的免费模型配置 --- .../Services/Chat/AiChatService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Application/Services/Chat/AiChatService.cs b/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Application/Services/Chat/AiChatService.cs index ea197089..996cd0b5 100644 --- a/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Application/Services/Chat/AiChatService.cs +++ b/Yi.Abp.Net8/module/ai-hub/Yi.Framework.AiHub.Application/Services/Chat/AiChatService.cs @@ -50,7 +50,7 @@ public class AiChatService : ApplicationService private readonly IAccountService _accountService; private readonly ISqlSugarRepository _agentStoreRepository; private readonly ISqlSugarRepository _aiModelRepository; - private const string FreeModelId = "DeepSeek-V3"; + private const string FreeModelId = "DeepSeek-V3-0324"; public AiChatService(IHttpContextAccessor httpContextAccessor, AiBlacklistManager aiBlacklistManager,