Skip to content

Commit dcc8791

Browse files
committed
feat(openai-models): add gpt-5-pro-2025-10-06 with timeout disabled and non‑streaming notice
- 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)
1 parent c55a71c commit dcc8791

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

packages/types/src/providers/openai.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ export const openAiNativeModels = {
3737
{ name: "priority", contextWindow: 400000, inputPrice: 2.5, outputPrice: 20.0, cacheReadsPrice: 0.25 },
3838
],
3939
},
40+
"gpt-5-pro-2025-10-06": {
41+
maxTokens: 272000,
42+
contextWindow: 400000,
43+
supportsImages: true,
44+
supportsPromptCache: true,
45+
supportsReasoningEffort: false,
46+
reasoningEffort: "high",
47+
inputPrice: 15.0,
48+
outputPrice: 120.0,
49+
description:
50+
"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.",
51+
supportsVerbosity: true,
52+
supportsTemperature: false,
53+
disableTimeout: true,
54+
},
4055
"gpt-5-mini-2025-08-07": {
4156
maxTokens: 128000,
4257
contextWindow: 400000,

0 commit comments

Comments
 (0)