From 4a8c0373b50ae2b63e6874c0a955e280b25831aa Mon Sep 17 00:00:00 2001 From: Hannes Rudolph Date: Fri, 6 Feb 2026 14:22:20 -0700 Subject: [PATCH] refactor(azure): remove models with <128k context window MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove gpt-4 (8k) and gpt-4-32k (32k) — too small for agentic use. 62 models remain, all with tool_call support and ≥128k context. --- packages/types/src/providers/azure.ts | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/packages/types/src/providers/azure.ts b/packages/types/src/providers/azure.ts index e4ec8b496a..89fcffc3c6 100644 --- a/packages/types/src/providers/azure.ts +++ b/packages/types/src/providers/azure.ts @@ -149,26 +149,6 @@ export const azureModels = { supportsTemperature: true, description: "DeepSeek-V3.2", }, - "gpt-4": { - maxTokens: 8_192, - contextWindow: 8_192, - supportsImages: false, - supportsPromptCache: false, - inputPrice: 60, - outputPrice: 120, - supportsTemperature: true, - description: "GPT-4", - }, - "gpt-4-32k": { - maxTokens: 32_768, - contextWindow: 32_768, - supportsImages: false, - supportsPromptCache: false, - inputPrice: 60, - outputPrice: 120, - supportsTemperature: true, - description: "GPT-4 32K", - }, "gpt-4-turbo": { maxTokens: 4_096, contextWindow: 128_000,