mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-18 22:33:08 +00:00
feat: Add settingsService integration for feature defaults and improve worktree handling
This commit is contained in:
@@ -193,7 +193,11 @@ export class CodexModelCacheService {
|
||||
* Infer tier from model ID
|
||||
*/
|
||||
private inferTier(modelId: string): 'premium' | 'standard' | 'basic' {
|
||||
if (modelId.includes('max') || modelId.includes('gpt-5.2-codex')) {
|
||||
if (
|
||||
modelId.includes('max') ||
|
||||
modelId.includes('gpt-5.2-codex') ||
|
||||
modelId.includes('gpt-5.3-codex')
|
||||
) {
|
||||
return 'premium';
|
||||
}
|
||||
if (modelId.includes('mini')) {
|
||||
|
||||
Reference in New Issue
Block a user