-
Notifications
You must be signed in to change notification settings - Fork 362
browser: --browser-thinking-time extra-high selects Pro instead of Extra High (GPT-5.6 Sol) #353
Copy link
Copy link
Closed
Labels
P2Normal priority bug or improvement with limited blast radius.Normal priority bug or improvement with limited blast radius.clawsweeper:linked-pr-openClawSweeper found an open linked pull request for this issue.ClawSweeper found an open linked pull request for this issue.clawsweeper:no-new-fix-prClawSweeper does not recommend queueing a new automated fix PR for this issue.ClawSweeper does not recommend queueing a new automated fix PR for this issue.clawsweeper:source-reproClawSweeper found a high-confidence source-level issue reproduction.ClawSweeper found a high-confidence source-level issue reproduction.impact:otherThis issue has meaningful maintainer-visible impact outside the owned taxonomy.This issue has meaningful maintainer-visible impact outside the owned taxonomy.issue-rating: 🦞 diamond lobsterVery strong issue quality with high-confidence source-level or clear reproduction.Very strong issue quality with high-confidence source-level or clear reproduction.
Description
Metadata
Metadata
Assignees
Labels
P2Normal priority bug or improvement with limited blast radius.Normal priority bug or improvement with limited blast radius.clawsweeper:linked-pr-openClawSweeper found an open linked pull request for this issue.ClawSweeper found an open linked pull request for this issue.clawsweeper:no-new-fix-prClawSweeper does not recommend queueing a new automated fix PR for this issue.ClawSweeper does not recommend queueing a new automated fix PR for this issue.clawsweeper:source-reproClawSweeper found a high-confidence source-level issue reproduction.ClawSweeper found a high-confidence source-level issue reproduction.impact:otherThis issue has meaningful maintainer-visible impact outside the owned taxonomy.This issue has meaningful maintainer-visible impact outside the owned taxonomy.issue-rating: 🦞 diamond lobsterVery strong issue quality with high-confidence source-level or clear reproduction.Very strong issue quality with high-confidence source-level or clear reproduction.
Summary
On ChatGPT browser mode with GPT-5.6 Sol,
--browser-thinking-time extra-highends up selecting the UI effort labeled Pro, not Extra High. CLI override cannot currently request Extra High without hitting Pro.Observed with
@steipete/oracle@0.17.0.Expected
high/extendedextra-highheavyDocs / skill guidance treat
extra-highas the non-Pro max effort andheavyas Pro. Users should be able to override Extra High from the CLI.Actual
normalizeThinkingTimeLevel("extra-high")returns"heavy".prowhenTARGET_LEVEL === "heavy".thinkingTime: "heavy"; logs showThinking time: Pro (already selected).Contrast:
--browser-thinking-time extendedcorrectly logsThinking time: Highand storesthinkingTime: "extended".Repro
Then check:
Control (works as High):
Code pointers (0.17.0)
Alias collapse —
src/oracle/thinkingTime.js(dist:dist/src/oracle/thinkingTime.js):GPT-5.6 Pro preference when heavy —
src/browser/actions/thinkingTime.jsinjected selector:LEVEL_TOKENS.heavyincludes'extra high'TARGET_IS_GPT56_MODEL && TARGET_LEVEL === 'heavy', option finder returns items withhasToken(itemText, 'pro')currentEffortPillMatchesTargettreats a Pro pill as a successful heavy match for GPT-5.6Inconsistency: model selection already treats Extra High as non-Pro (
isNonProIntelligenceThinkingLabelincludes'extra high'and scores it highest), but thinking-time selection conflates Extra High with Pro viaheavy.Suggested fix
extra-highas its own normalized level (do not map toheavy).extra-high→ matchextra high/ 极高 only (nopro)heavy→ match Pro / heavy onlyTARGET_LEVEL === "heavy", never forextra-high.extra-high= Extra High UI;heavy= Pro UI.After that, CLI override remains
--browser-thinking-time extra-highwith no new flag required.Environment
@steipete/oracle: 0.17.0gpt-5.6-sol/ GPT-5.6 SolHappy to test a PR build if useful.