refactor: 优化模型配置与统一命名格式

- 将多个模型的配置项 variant 从 xhigh 调整为 medium 或 high,以优化性能与资源使用平衡。
- 将模型名称格式统一为连字符命名,提升命名一致性。
This commit is contained in:
2026-02-13 16:36:15 +08:00
parent d574e9e301
commit 262ee1758a
2 changed files with 6 additions and 6 deletions

View File

@@ -9,14 +9,14 @@
}, },
"hephaestus": { "hephaestus": {
"model": "cpa-openai/gpt-5.3-codex", "model": "cpa-openai/gpt-5.3-codex",
"variant": "xhigh" "variant": "medium"
}, },
"atlas": { "atlas": {
"model": "cpa-anthropic/claude-sonnet-4-5" "model": "cpa-anthropic/claude-sonnet-4-5"
}, },
"oracle": { "oracle": {
"model": "cpa-openai/gpt-5.2", "model": "cpa-openai/gpt-5.2",
"variant": "xhigh" "variant": "high"
}, },
"librarian": { "librarian": {
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"
@@ -37,7 +37,7 @@
}, },
"momus": { "momus": {
"model": "cpa-openai/gpt-5.2", "model": "cpa-openai/gpt-5.2",
"variant": "xhigh" "variant": "medium"
}, },
"sisyphus-junior": { "sisyphus-junior": {
"model": "cpa-anthropic/claude-sonnet-4-5" "model": "cpa-anthropic/claude-sonnet-4-5"
@@ -55,11 +55,11 @@
}, },
"deep": { "deep": {
"model": "cpa-openai/gpt-5.3-codex", "model": "cpa-openai/gpt-5.3-codex",
"variant": "xhigh" "variant": "medium"
}, },
"artistry": { "artistry": {
"model": "cpa-google/gemini-3-pro", "model": "cpa-google/gemini-3-pro",
"variant": "max" "variant": "high"
}, },
"quick": { "quick": {
"model": "cpa-google/gemini-3-flash" "model": "cpa-google/gemini-3-flash"

View File

@@ -79,7 +79,7 @@
}, },
"models": { "models": {
"gpt-5.3-codex": { "gpt-5.3-codex": {
"name": "GPT-5.3 Codex", "name": "GPT-5.3-Codex",
"tool_call": true, "tool_call": true,
"reasoning": true, "reasoning": true,
"modalities": { "modalities": {