refactor(cursor-models): remove tier property from Cursor model configurations

- Removed the 'tier' property from Cursor model configurations and related UI components.
- Updated relevant files to reflect the removal of tier-related logic and display elements.
- This change simplifies the model structure and UI, focusing on essential attributes.
This commit is contained in:
Kacper
2026-01-01 20:00:40 +01:00
parent 3b3e61da8d
commit 63b9f52d6b
6 changed files with 0 additions and 38 deletions

View File

@@ -10,7 +10,6 @@ export type ModelOption = {
badge?: string;
provider: ModelProvider;
hasThinking?: boolean;
tier?: 'free' | 'pro';
};
export const CLAUDE_MODELS: ModelOption[] = [
@@ -48,7 +47,6 @@ export const CURSOR_MODELS: ModelOption[] = Object.entries(CURSOR_MODEL_MAP).map
description: config.description,
provider: 'cursor' as ModelProvider,
hasThinking: config.hasThinking,
tier: config.tier,
})
);