Skip to content

Commit 0c82955

Browse files
dmoliveiraCopilot
andcommitted
Lower deep routing effort
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent f39dac5 commit 0c82955

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/model-allocation-policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This policy keeps OpenAI Codex as the default path and uses Copilot-provided non
1414
| --- | --- | --- | --- | --- |
1515
| fast | `quick` | `openai/gpt-5.1-codex-mini` | `low` | high-frequency discovery/verification loops |
1616
| standard | `balanced` | `openai/gpt-5.3-codex` | `medium` | normal implementation and planning |
17-
| complex | `deep` | `openai/gpt-5.4-codex` | `high` | multi-module architecture/debug work |
17+
| complex | `deep` | `openai/gpt-5.4-codex` | `medium` | multi-module architecture/debug work |
1818
| critical | `critical` | `openai/gpt-5.4-codex` | `medium` | final risk review, release/security sign-off |
1919

2020
## Default Agent Routing
@@ -45,7 +45,7 @@ This policy keeps OpenAI Codex as the default path and uses Copilot-provided non
4545
| --- | --- | --- | --- |
4646
| `quick` | `openai/gpt-5.1-codex-mini` | Copilot low-latency coding model | Copilot balanced coding model |
4747
| `balanced` | `openai/gpt-5.3-codex` (`medium`) | Copilot balanced reasoning model | Copilot high-reasoning model |
48-
| `deep` | `openai/gpt-5.4-codex` (`high`) | Copilot high-reasoning model | Copilot balanced reasoning model |
48+
| `deep` | `openai/gpt-5.4-codex` (`medium`) | Copilot high-reasoning model | Copilot balanced reasoning model |
4949
| `critical` | `openai/gpt-5.4-codex` (`medium`) | Copilot highest-reasoning available model | Copilot high-reasoning model |
5050
| `visual` | `openai/gpt-5.3-codex` (`medium`) | Copilot visual-capable reasoning model | Copilot balanced model |
5151
| `writing` | `openai/gpt-5.3-codex` (`medium`) | Copilot strong writing/reasoning model | Copilot balanced model |

plugin/gateway-core/dist/hooks/agent-model-resolver/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { writeDecisionComparisonAudit, } from "../shared/llm-decision-runtime.js
55
const MODEL_BY_CATEGORY = {
66
quick: { model: "openai/gpt-5.1-codex-mini", reasoning: "low" },
77
balanced: { model: "openai/gpt-5.3-codex", reasoning: "medium" },
8-
deep: { model: "openai/gpt-5.4-codex", reasoning: "high" },
8+
deep: { model: "openai/gpt-5.4-codex", reasoning: "medium" },
99
critical: { model: "openai/gpt-5.4-codex", reasoning: "medium" },
1010
visual: { model: "openai/gpt-5.3-codex", reasoning: "medium" },
1111
writing: { model: "openai/gpt-5.3-codex", reasoning: "medium" },

plugin/gateway-core/src/hooks/agent-model-resolver/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ interface ToolBeforePayload {
2828
const MODEL_BY_CATEGORY: Record<string, { model: string; reasoning: string }> = {
2929
quick: { model: "openai/gpt-5.1-codex-mini", reasoning: "low" },
3030
balanced: { model: "openai/gpt-5.3-codex", reasoning: "medium" },
31-
deep: { model: "openai/gpt-5.4-codex", reasoning: "high" },
31+
deep: { model: "openai/gpt-5.4-codex", reasoning: "medium" },
3232
critical: { model: "openai/gpt-5.4-codex", reasoning: "medium" },
3333
visual: { model: "openai/gpt-5.3-codex", reasoning: "medium" },
3434
writing: { model: "openai/gpt-5.3-codex", reasoning: "medium" },

scripts/model_routing_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def default_schema() -> dict[str, Any]:
4747
"description": "Higher-reliability analysis for complex engineering work",
4848
"model": "openai/gpt-5.4-codex",
4949
"temperature": 0.1,
50-
"reasoning": "high",
50+
"reasoning": "medium",
5151
"verbosity": "medium",
5252
},
5353
"critical": {

0 commit comments

Comments
 (0)