feat: 更新ultrabrain模型配置并调整推理强度

- 更新ultrabrain模型配置为gpt-5.2-codex版本
- 将 GPT-5.2 和 GPT-5.2-Codex 模型的推理强度配置为 xhigh,并移除冗余的模型条目。
This commit is contained in:
2026-01-26 21:49:52 +08:00
parent 2d9b6632e6
commit 22c8d82c63
2 changed files with 9 additions and 9 deletions

View File

@@ -53,17 +53,17 @@
"setCacheKey": true
},
"models": {
"gpt-5.2-xhigh": {
"name": "GPT-5.2 (xhigh)"
},
"gpt-5.2": {
"name": "GPT-5.2"
},
"gpt-5.2-codex-xhigh": {
"name": "GPT-5.2-Codex (xhigh)"
"name": "GPT-5.2",
"options": {
"reasoningEffort": "xhigh"
}
},
"gpt-5.2-codex": {
"name": "GPT-5.2-Codex"
"name": "GPT-5.2-Codex",
"options": {
"reasoningEffort": "xhigh"
}
}
}
}