feat: enhance adaptive thinking model support and update UI components

- Added `isAdaptiveThinkingModel` utility to improve model identification logic in the AddFeatureDialog.
- Updated the ThinkingLevelSelector to conditionally display information based on available thinking levels.
- Enhanced model name formatting in agent-context-parser to include 'GPT-5.3 Codex' for better clarity.

These changes improve the user experience by refining model handling and UI feedback related to adaptive thinking capabilities.
This commit is contained in:
Kacper
2026-02-05 23:05:19 +01:00
parent 835ffe3185
commit f97453484f
3 changed files with 4 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ export function ThinkingLevelSelector({
))}
</div>
<p className="text-xs text-muted-foreground">
{model && getThinkingLevelsForModel(model).includes('adaptive')
{levels.includes('adaptive')
? 'Adaptive thinking lets the model decide how much reasoning to use.'
: 'Higher levels give more time to reason through complex problems.'}
</p>