mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
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)
This commit is contained in:
parent
84f58cd518
commit
9ecd7bb1ec
1 changed files with 15 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue