From cb93d75e0ae19efce2b65e2fe3d6c7549e5a29ac Mon Sep 17 00:00:00 2001 From: Kalvin C Date: Thu, 30 Jan 2025 13:45:55 -0800 Subject: [PATCH] chore: remove o1-mini suggestion from UI add model view (#957) --- .../src/components/settings/models/hardcoded_stuff.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/ui/desktop/src/components/settings/models/hardcoded_stuff.tsx b/ui/desktop/src/components/settings/models/hardcoded_stuff.tsx index 9aa8b47c..21c12aad 100644 --- a/ui/desktop/src/components/settings/models/hardcoded_stuff.tsx +++ b/ui/desktop/src/components/settings/models/hardcoded_stuff.tsx @@ -7,7 +7,6 @@ export const goose_models: Model[] = [ { id: 3, name: 'gpt-4-turbo', provider: 'OpenAI' }, { id: 4, name: 'gpt-3.5-turbo', provider: 'OpenAI' }, { id: 5, name: 'o1', provider: 'OpenAI' }, - { id: 6, name: 'o1-mini', provider: 'OpenAI' }, { id: 7, name: 'claude-3-5-sonnet-latest', provider: 'Anthropic' }, { id: 8, name: 'claude-3-5-haiku-latest', provider: 'Anthropic' }, { id: 9, name: 'claude-3-opus-latest', provider: 'Anthropic' }, @@ -21,14 +20,7 @@ export const goose_models: Model[] = [ { id: 17, name: 'anthropic/claude-3.5-sonnet', provider: 'OpenRouter' }, ]; -export const openai_models = [ - 'gpt-4o-mini', - 'gpt-4o', - 'gpt-4-turbo', - 'gpt-3.5-turbo', - 'o1', - 'o1-mini', -]; +export const openai_models = ['gpt-4o-mini', 'gpt-4o', 'gpt-4-turbo', 'gpt-3.5-turbo', 'o1']; export const anthropic_models = [ 'claude-3-5-sonnet-latest',