【代码新增】AI:增加混元、通义的 deepseek 测试案例

This commit is contained in:
YunaiV 2025-02-24 12:41:14 +08:00
parent a1d5602c40
commit 117470998e
1 changed files with 5 additions and 1 deletions

View File

@ -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