Model "auto" always runs with reasoning effort disabled (reasoningEffort: null), and rejects any attempt to configure one
还没有人认领这个 Issue。
- 主要语言
- Shell
- 星标
- 11.2k
- 派生
- 1.9k
- 平均合并
- 14 小时 16 分钟
- 30 天内合并 PR
- 6
描述
Describe the bug
When the model is set to auto, every request is sent without any reasoning effort:
- Selecting
autosets the session'sreasoningEfforttonull(visible in the session'sevents.jsonlassession.model_change → "reasoningEffort": null). - The auto router (
auto_v2) picks a model per prompt (session.auto_mode_resolved) but never assigns a reasoning effort to it — the request goes out with none, confirmed byreasoning_effort = NULLandreasoning_tokens = 0in~/.copilot/session-store.db(assistant_usage_events). - Trying to set one explicitly is rejected:
copilot --model auto --effort xhighfails withError: Model "auto" does not support reasoning effort configuration (requested: "xhigh").
So with auto there is no way at all to run with reasoning enabled. The degradation is silent — no error, no indication in the UI — and the impact on agentic work is severe: on a large agentic prompt (spec generation with mandatory file reads), the routed model (gpt-5.3-codex) ends its turn without making a single tool call, replying that it "could not perform the investigation". The exact same prompt, on the exact same routed model, works flawlessly when a reasoning effort is set (see "Same model, only effort differs" below).
Affected version
GitHub Copilot CLI 1.0.80.
Steps to reproduce the behavior
# 1) auto → no reasoning (silent)
copilot --model auto --allow-all-tools -p "Reply with exactly: ok"
# 2) control: explicit model → reasoning works
copilot --model gpt-5.4 --allow-all-tools -p "Reply with exactly: ok"
# 3) auto + explicit effort → hard error
copilot --model auto --effort xhigh --allow-all-tools -p "Reply with exactly: ok"
Then inspect what was actually sent (replace the session ids printed in the Resume line):
sqlite3 -readonly ~/.copilot/session-store.db \
"SELECT session_id, model, reasoning_effort, reasoning_tokens
FROM assistant_usage_events ORDER BY id DESC LIMIT 5;"
Observed results:
| Run | Routed/used model | reasoning_effort |
reasoning_tokens |
|---|---|---|---|
1 — --model auto |
gpt-5.4-mini (via auto_v2) |
NULL | 0 |
2 — --model gpt-5.4 |
gpt-5.4 |
xhigh |
21 |
3 — --model auto --effort xhigh |
— | — | Error: Model "auto" does not support reasoning effort configuration (requested: "xhigh"). |
The same happens in interactive mode: switching to auto logs
session.model_change ... "previousReasoningEffort": "xhigh", "reasoningEffort": null
in ~/.copilot/session-state/<session-id>/events.jsonl, and every subsequent session.auto_mode_resolved runs the chosen model with no effort.
Same model, only effort differs — night and day
Real-world case that led us here (a large spec-generation prompt, ~19.6k input tokens, requiring file reads and skill loading):
auto→ routed togpt-5.3-codex,reasoning_effort = NULL: the model ends the turn after 158 output tokens, 0 reasoning tokens, 0 tool calls, claiming it could not perform the investigation. Reproduced consistently across several sessions.- Same prompt, same
gpt-5.3-codex, withreasoning_effort = xhigh: normal agentic behavior — tool calls, thousands of reasoning tokens, task completed.
The only variable is the reasoning effort. auto mode currently guarantees the degraded path.
Expected behavior
auto should never silently disable reasoning. Either:
- the auto router assigns an appropriate reasoning effort for the routed model on each request (clamping to what that model supports), and/or
- a user-provided effort (
--effort, settingseffortLevel, session config) is honored underautoand clamped per routed model — instead of being cleared on switch and rejected on the CLI flag.
Additional context
- This looks like an overcorrection of #2870: there, switching to
autokept the previous effort and caused loud400errors on models that don't support it; the fix apparently clears the effort entirely, trading a loud error for a silent, permanent degradation. #4459 and #4445 show the invalid-combination side of this is still not fully solved either — both symptoms share the same root: the auto router does not manage effort per routed model. - The ACP server mode (
copilot --acp) is affected identically, with no workaround at all:session/set_config_optionwithmodel=autoclears the effort and removes the reasoning-effort config option from the session, so ACP clients cannot restore it.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 copilot --model auto 和 --effort 入口开始,然后在将 events.jsonl 与 session-store.db 中的 assistant_usage_events 进行比较的同时,跟踪 auto_v2、session.model_change 和 session.auto_mode_resolved。完成的标准是:自动模式不再静默清除推理 effort,能够安全地接受已配置的 effort,并在不产生无效的模型特定请求的情况下保留 agentic 行为。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- shell, sqlite
- 领域
- cli
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 活跃
- 描述清晰度
- 基本清楚
- 新手友好度
- 48/100