feat: add chatgpt-4o-latest (#7289)
This commit is contained in:
parent
32dc963556
commit
5aa373dc04
4 changed files with 52 additions and 4 deletions
|
|
@ -19,7 +19,7 @@ const ModelIcon: FC<ModelIconProps> = ({
|
|||
}) => {
|
||||
const language = useLanguage()
|
||||
|
||||
if (provider?.provider === 'openai' && modelName?.startsWith('gpt-4'))
|
||||
if (provider?.provider === 'openai' && (modelName?.startsWith('gpt-4') || modelName?.includes('4o')))
|
||||
return <OpenaiViolet className={`w-4 h-4 ${className}`}/>
|
||||
|
||||
if (provider?.icon_small) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue