From 3b758725a418ca4b0350a90cec584cbb410c8732 Mon Sep 17 00:00:00 2001 From: Kalvin C Date: Thu, 30 Jan 2025 13:55:58 -0800 Subject: [PATCH] chore: remove gpt-3.5-turbo UI suggestion, as it is deprecated (#959) --- ui/desktop/src/components/settings/models/hardcoded_stuff.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/desktop/src/components/settings/models/hardcoded_stuff.tsx b/ui/desktop/src/components/settings/models/hardcoded_stuff.tsx index 21c12aad..9dcba01a 100644 --- a/ui/desktop/src/components/settings/models/hardcoded_stuff.tsx +++ b/ui/desktop/src/components/settings/models/hardcoded_stuff.tsx @@ -5,7 +5,6 @@ export const goose_models: Model[] = [ { id: 1, name: 'gpt-4o-mini', provider: 'OpenAI' }, { id: 2, name: 'gpt-4o', provider: 'OpenAI' }, { id: 3, name: 'gpt-4-turbo', provider: 'OpenAI' }, - { id: 4, name: 'gpt-3.5-turbo', provider: 'OpenAI' }, { id: 5, name: 'o1', provider: 'OpenAI' }, { id: 7, name: 'claude-3-5-sonnet-latest', provider: 'Anthropic' }, { id: 8, name: 'claude-3-5-haiku-latest', provider: 'Anthropic' }, @@ -20,7 +19,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']; +export const openai_models = ['gpt-4o-mini', 'gpt-4o', 'gpt-4-turbo', 'o1']; export const anthropic_models = [ 'claude-3-5-sonnet-latest',