feat(ui): improve modal UX and model management

- Increase dialog max-width to 2xl for better content display
- Add tabbed interface to feature modal (prompt/model/testing)
- Streamline model selection with compact button layout
- Remove unused OpenAI O3/O4 models from registry
- Add model string validation and fallback logic
- Add "Uncategorized" category support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
This commit is contained in:
Kacper
2025-12-10 03:27:11 +01:00
parent 1a5a828d45
commit cd7d4ab138
13 changed files with 789 additions and 426 deletions

View File

@@ -265,22 +265,6 @@ class CodexProvider extends ModelProvider {
provider: 'codex',
description: 'Broad world knowledge with strong reasoning',
tier: 'standard'
},
{
id: 'o3',
name: 'O3',
modelString: 'o3',
provider: 'codex',
description: 'Advanced reasoning model',
tier: 'premium'
},
{
id: 'o3-mini',
name: 'O3 Mini',
modelString: 'o3-mini',
provider: 'codex',
description: 'Efficient reasoning model',
tier: 'standard'
}
];
}
@@ -306,12 +290,7 @@ class CodexProvider extends ModelProvider {
'gpt-5.1-codex-max': 'gpt-5.1-codex-max',
'gpt-5.1-codex': 'gpt-5.1-codex',
'gpt-5.1-codex-mini': 'gpt-5.1-codex-mini',
'gpt-5.1': 'gpt-5.1',
'o3': 'o3',
'o3-mini': 'o3-mini',
'o4-mini': 'o4-mini',
'gpt-4o': 'gpt-4o',
'gpt-4o-mini': 'gpt-4o-mini'
'gpt-5.1': 'gpt-5.1'
};
return modelMap[modelKey] || 'gpt-5.1-codex-max';
}
@@ -346,8 +325,7 @@ class ModelProviderFactory {
// Check if it's a Codex/OpenAI model
const codexModels = [
'gpt-5.1-codex-max', 'gpt-5.1-codex', 'gpt-5.1-codex-mini', 'gpt-5.1',
'o3', 'o3-mini', 'o4-mini', 'gpt-4o', 'gpt-4o-mini'
'gpt-5.1-codex-max', 'gpt-5.1-codex', 'gpt-5.1-codex-mini', 'gpt-5.1'
];
if (codexModels.includes(modelId)) {
return new CodexProvider();