Hi, when setting thinkingTime, with the intention of forcing 5.5 Pro Extended in the browser, the selector picks Extended for the regular 5.5 model instead. When just using the model "gpt-5.5-pro" with no thinkingTime, it respects the choice made on the website and correctly selects the Pro model, but the model selector is broken for 5.5 Pro when trying to explicitly use Extended. If you want I can try to look into this issue myself and submit a pr, if you like. Cheers and thanks.
Below is a minimal bug report from codex:
Summary
When using Oracle browser mode with model: "gpt-5.5-pro" and browser.thinkingTime: "extended", Oracle appears to select
normal GPT-5.5 and then set that model to Extended, instead of selecting GPT-5.5 Pro.
Config
{
model: "gpt-5.5-pro",
engine: "browser",
browser: {
chatgptUrl: "https://chatgpt.com/g/g-p-.../project",
manualLogin: true,
modelStrategy: "select",
thinkingTime: "extended",
},
}
Expected
Oracle selects GPT-5.5 Pro and, if possible, sets Pro thinking time to Extended.
Actual
Oracle selects normal GPT-5.5, then applies Extended thinking time there. The resulting ChatGPT UI is not using the Pro
model.
Workaround
Remove browser.thinkingTime and only use:
{
model: "gpt-5.5-pro",
engine: "browser",
browser: {
manualLogin: true,
modelStrategy: "select",
},
}
This avoids touching the thinking-time picker and prioritizes selecting the Pro model.
Version
Oracle CLI 0.10.0
Hi, when setting
thinkingTime, with the intention of forcing 5.5 Pro Extended in the browser, the selector picks Extended for the regular 5.5 model instead. When just using the model"gpt-5.5-pro"with nothinkingTime, it respects the choice made on the website and correctly selects the Pro model, but the model selector is broken for 5.5 Pro when trying to explicitly use Extended. If you want I can try to look into this issue myself and submit a pr, if you like. Cheers and thanks.Below is a minimal bug report from codex:
Summary
When using Oracle browser mode with
model: "gpt-5.5-pro"andbrowser.thinkingTime: "extended", Oracle appears to selectnormal GPT-5.5 and then set that model to Extended, instead of selecting GPT-5.5 Pro.
Config
Expected
Oracle selects GPT-5.5 Pro and, if possible, sets Pro thinking time to Extended.
Actual
Oracle selects normal GPT-5.5, then applies Extended thinking time there. The resulting ChatGPT UI is not using the Pro
model.
Workaround
Remove browser.thinkingTime and only use:
This avoids touching the thinking-time picker and prioritizes selecting the Pro model.
Version
Oracle CLI 0.10.0