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

@@ -35,7 +35,7 @@
"model": "cpa-google/gemini-3-pro-high" "model": "cpa-google/gemini-3-pro-high"
}, },
"ultrabrain": { "ultrabrain": {
"model": "packy-openai/gpt-5.2-codex-xhigh" "model": "packy-openai/gpt-5.2-codex"
}, },
"artistry": { "artistry": {
"model": "cpa-google/gemini-3-pro-high" "model": "cpa-google/gemini-3-pro-high"

View File

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