Skip to content

Commit

Permalink
ChatGPT naming for icon (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
nang-dev authored Feb 3, 2025
1 parent 47242a3 commit 27fddca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/src/components/modelSelection/ModelSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,12 @@ function ModelOption({
return 'pearai-color.png';
case modelTitle.includes('claude'):
return 'anthropic.png';
case modelTitle.includes('gpt'):
return 'openai.png';
case modelTitle.includes('deepseek'):
return 'deepseek-svg.svg';
case modelTitle.includes('gemini'):
return 'gemini-icon.png';
case modelTitle.includes('gpt') || modelTitle.startsWith('o'): // OpenAI naming :(
return 'openai.png';
default:
return 'default.png';
}
Expand Down

0 comments on commit 27fddca

Please sign in to comment.