mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
feat: add GPT-5 model defaults for Roo provider
Configure GPT-5.1, GPT-5, and GPT-5-mini models to use: - apply_patch as the included tool - Exclude apply_diff and write_to_file - Default reasoning effort: medium
This commit is contained in:
parent
d2dee3cddf
commit
59b1b6cf7b
1 changed files with 15 additions and 0 deletions
|
|
@ -13,6 +13,21 @@ export const MODEL_DEFAULTS: Record<string, Partial<ModelInfo>> = {
|
|||
includedTools: ["search_and_replace"],
|
||||
excludedTools: ["apply_diff"],
|
||||
},
|
||||
"openai/gpt-5.1": {
|
||||
includedTools: ["apply_patch"],
|
||||
excludedTools: ["apply_diff", "write_to_file"],
|
||||
reasoningEffort: "medium",
|
||||
},
|
||||
"openai/gpt-5": {
|
||||
includedTools: ["apply_patch"],
|
||||
excludedTools: ["apply_diff", "write_to_file"],
|
||||
reasoningEffort: "medium",
|
||||
},
|
||||
"openai/gpt-5-mini": {
|
||||
includedTools: ["apply_patch"],
|
||||
excludedTools: ["apply_diff", "write_to_file"],
|
||||
reasoningEffort: "medium",
|
||||
},
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue