From d381fde65d969b68b4bee94b66d096204f72a649 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Thu, 25 Sep 2025 16:15:00 +0000 Subject: [PATCH] test: add GLM 4.5 Air models to excluded list in OpenRouter tests - Added z-ai/glm-4.5-air and z-ai/glm-4.5-air:free to excludedReasoningBudgetModels - These models are not yet in the test fixture but are available in the live API --- src/api/providers/fetchers/__tests__/openrouter.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api/providers/fetchers/__tests__/openrouter.spec.ts b/src/api/providers/fetchers/__tests__/openrouter.spec.ts index 2f19487564..b85a75886f 100644 --- a/src/api/providers/fetchers/__tests__/openrouter.spec.ts +++ b/src/api/providers/fetchers/__tests__/openrouter.spec.ts @@ -134,6 +134,8 @@ describe("OpenRouter API", () => { "google/gemini-2.5-flash-lite-preview-06-17", "google/gemini-2.5-pro", "anthropic/claude-opus-4.1", // Not yet available in OpenRouter API + "z-ai/glm-4.5-air", // Not yet in test fixture + "z-ai/glm-4.5-air:free", // Not yet in test fixture ]) const expectedReasoningBudgetModels = Array.from(OPEN_ROUTER_REASONING_BUDGET_MODELS)