From 117470998ea5bfc234543a6d82b837626ac44028 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Mon, 24 Feb 2025 12:41:14 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BB=A3=E7=A0=81=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E3=80=91AI=EF=BC=9A=E5=A2=9E=E5=8A=A0=E6=B7=B7=E5=85=83?= =?UTF-8?q?=E3=80=81=E9=80=9A=E4=B9=89=E7=9A=84=20deepseek=20=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E6=A1=88=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yudao/framework/ai/chat/TongYiChatModelTests.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/yudao-module-ai/yudao-spring-boot-starter-ai/src/test/java/cn/iocoder/yudao/framework/ai/chat/TongYiChatModelTests.java b/yudao-module-ai/yudao-spring-boot-starter-ai/src/test/java/cn/iocoder/yudao/framework/ai/chat/TongYiChatModelTests.java index aa521373c4..c632acf20f 100644 --- a/yudao-module-ai/yudao-spring-boot-starter-ai/src/test/java/cn/iocoder/yudao/framework/ai/chat/TongYiChatModelTests.java +++ b/yudao-module-ai/yudao-spring-boot-starter-ai/src/test/java/cn/iocoder/yudao/framework/ai/chat/TongYiChatModelTests.java @@ -24,7 +24,11 @@ public class TongYiChatModelTests { private final DashScopeChatModel chatModel = new DashScopeChatModel( new DashScopeApi("sk-7d903764249848cfa912733146da12d1"), - DashScopeChatOptions.builder().withModel("qwen1.5-72b-chat").build()); + DashScopeChatOptions.builder() + .withModel("qwen1.5-72b-chat") // 模型 +// .withModel("deepseek-r1") // 模型(deepseek-r1) +// .withModel("deepseek-v3") // 模型(deepseek-v3) + .build()); @Test @Disabled