diff --git a/server/modules/providers/list/cursor/cursor-models.provider.ts b/server/modules/providers/list/cursor/cursor-models.provider.ts index ccc2288a..a554a0e6 100644 --- a/server/modules/providers/list/cursor/cursor-models.provider.ts +++ b/server/modules/providers/list/cursor/cursor-models.provider.ts @@ -21,11 +21,25 @@ import { export const CURSOR_FALLBACK_MODELS: ProviderModelsDefinition = { OPTIONS: [ - { value: 'auto', label: 'Auto' }, - { value: 'composer-2-fast', label: 'Composer 2 Fast' }, - { value: 'composer-2', label: 'Composer 2' }, - { value: 'gpt-5.3-codex', label: 'GPT-5.3' }, - { value: 'gemini-3-pro', label: 'Gemini 3 Pro' }, + { value: "opus-4.6-thinking", label: "Claude 4.6 Opus (Thinking)" }, + { value: "gpt-5.3-codex", label: "GPT-5.3" }, + { value: "gpt-5.2-high", label: "GPT-5.2 High" }, + { value: "gemini-3-pro", label: "Gemini 3 Pro" }, + { value: "opus-4.5-thinking", label: "Claude 4.5 Opus (Thinking)" }, + { value: "gpt-5.2", label: "GPT-5.2" }, + { value: "gpt-5.1", label: "GPT-5.1" }, + { value: "gpt-5.1-high", label: "GPT-5.1 High" }, + { value: "composer-1", label: "Composer 1" }, + { value: "auto", label: "Auto" }, + { value: "sonnet-4.5", label: "Claude 4.5 Sonnet" }, + { value: "sonnet-4.5-thinking", label: "Claude 4.5 Sonnet (Thinking)" }, + { value: "opus-4.5", label: "Claude 4.5 Opus" }, + { value: "gpt-5.1-codex", label: "GPT-5.1 Codex" }, + { value: "gpt-5.1-codex-high", label: "GPT-5.1 Codex High" }, + { value: "gpt-5.1-codex-max", label: "GPT-5.1 Codex Max" }, + { value: "gpt-5.1-codex-max-high", label: "GPT-5.1 Codex Max High" }, + { value: "opus-4.1", label: "Claude 4.1 Opus" }, + { value: "grok", label: "Grok" }, ], DEFAULT: 'composer-2-fast', };