From 9ecd7bb1ec2eddc8db9a9745b041b61c45a73c8f Mon Sep 17 00:00:00 2001 From: Hannes Rudolph Date: Fri, 10 Oct 2025 14:00:22 -0600 Subject: [PATCH] =?UTF-8?q?feat(openai-models):=20add=20gpt-5-pro-2025-10-?= =?UTF-8?q?06=20with=20timeout=20disabled=20and=20non=E2=80=91streaming=20?= =?UTF-8?q?notice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add GPT‑5 Pro to model registry with: - contextWindow: 400k, maxTokens: 272k - supportsImages: true, supportsPromptCache: true, supportsVerbosity: true, supportsTemperature: false - reasoningEffort: high (Responses API only) - pricing: $15/1M input tokens, $120/1M output tokens - Set disableTimeout: true to avoid requiring a global timeout override - Description clarifies: this is a slow, reasoning‑focused model designed for tough problems; requests may take several minutes; it does not stream (UI may appear idle until completion) --- packages/types/src/providers/openai.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages/types/src/providers/openai.ts b/packages/types/src/providers/openai.ts index 722b57677c..6b68e9bfe9 100644 --- a/packages/types/src/providers/openai.ts +++ b/packages/types/src/providers/openai.ts @@ -47,6 +47,21 @@ export const openAiNativeModels = { ], description: "GPT-5.1: The best model for coding and agentic tasks across domains", }, + "gpt-5-pro-2025-10-06": { + maxTokens: 272000, + contextWindow: 400000, + supportsImages: true, + supportsPromptCache: true, + supportsReasoningEffort: false, + reasoningEffort: "high", + inputPrice: 15.0, + outputPrice: 120.0, + description: + "GPT-5 Pro: a slow, reasoning-focused model built to tackle tough problems. Requests can take several minutes to finish. Responses API only; no streaming, so it may appear stuck until the reply is ready.", + supportsVerbosity: true, + supportsTemperature: false, + disableTimeout: true, + }, "gpt-5.1-codex": { maxTokens: 128000, contextWindow: 400000,