Skip to content

Commit

Permalink
chore: remove gpt-3.5-turbo UI suggestion, as it is deprecated (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalvinnchau authored Jan 30, 2025
1 parent cb93d75 commit 3b75872
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand All @@ -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',
Expand Down

0 comments on commit 3b75872

Please sign in to comment.