Skip to content

Commit

Permalink
🐛 fix: Azure modelTag icon display (lobehub#3394)
Browse files Browse the repository at this point in the history
  • Loading branch information
hezhijie0327 committed Aug 5, 2024
1 parent 6d5e7b0 commit ee6baa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ModelTag/ModelIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const ModelIcon = memo<ModelIconProps>(({ model: originModel, size = 12 }) => {
)
return <Stability size={size} />;

if (model.includes('phi3') || model.includes('phi-3') || model.includes('wizardlm')) return <Azure.Avatar size={size} />;
if (model.includes('phi3') || model.includes('phi-3') || model.includes('wizardlm')) return <Azure size={size} />;
if (model.includes('firefly')) return <AdobeFirefly size={size} />;
if (model.includes('jamba') || model.includes('j2-')) return <Ai21 size={size} />;
});
Expand Down

0 comments on commit ee6baa8

Please sign in to comment.