mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-18 09:00:32 +00:00
feat: add xhigh thinking level support for gpt-5.2 and gpt-5.2-codex
- Add XHIGH_MODELS constant and getAvailableThinkingLevels() to AgentSession - Update ThinkingSelectorComponent to accept availableLevels parameter - Both shift+tab cycling and /thinking command now show xhigh for supported models - Update types.ts documentation to list supported models
This commit is contained in:
parent
b24a2ec037
commit
4f981d8ebc
4 changed files with 52 additions and 16 deletions
|
|
@ -1301,6 +1301,7 @@ export class InteractiveMode {
|
|||
this.showSelector((done) => {
|
||||
const selector = new ThinkingSelectorComponent(
|
||||
this.session.thinkingLevel,
|
||||
this.session.getAvailableThinkingLevels(),
|
||||
(level) => {
|
||||
this.session.setThinkingLevel(level);
|
||||
this.updateEditorBorderColor();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue