fix(ai): update copilot claude test model

This commit is contained in:
Mario Zechner
2026-05-10 17:47:45 +02:00
parent e25415dd5f
commit cf7f2e3dbb
12 changed files with 22 additions and 22 deletions

View File

@@ -464,7 +464,7 @@ describe("Tool Results with Images", () => {
"claude-sonnet-4 - should handle tool result with only image",
{ retry: 3, timeout: 30000 },
async () => {
const llm = getModel("github-copilot", "claude-sonnet-4");
const llm = getModel("github-copilot", "claude-sonnet-4.6");
await handleToolWithImageResult(llm, { apiKey: githubCopilotToken });
},
);
@@ -473,7 +473,7 @@ describe("Tool Results with Images", () => {
"claude-sonnet-4 - should handle tool result with text and image",
{ retry: 3, timeout: 30000 },
async () => {
const llm = getModel("github-copilot", "claude-sonnet-4");
const llm = getModel("github-copilot", "claude-sonnet-4.6");
await handleToolWithTextAndImageResult(llm, { apiKey: githubCopilotToken });
},
);