fix(agents): align runtime with updated deps

This commit is contained in:
Peter Steinberger
2026-04-04 22:37:42 +09:00
parent 76d1f26782
commit f9717f2eae
28 changed files with 280 additions and 120 deletions

View File

@@ -473,7 +473,11 @@ describe("model-selection", () => {
expect(result.allowAny).toBe(false);
expect(result.allowedKeys.has("anthropic/claude-sonnet-4-6")).toBe(true);
expect(result.allowedCatalog).toEqual([
{ provider: "anthropic", id: "claude-sonnet-4-6", name: "claude-sonnet-4-6" },
expect.objectContaining({
provider: "anthropic",
id: "claude-sonnet-4-6",
name: expect.any(String),
}),
]);
});