add submodel icon

This commit is contained in:
DD 2025-09-15 14:31:31 +08:00
parent 71d41d6eaa
commit 1c48391cdb

View File

@ -54,6 +54,7 @@ import {
FastGPT, FastGPT,
Kling, Kling,
Jimeng, Jimeng,
SubModel,
} from '@lobehub/icons'; } from '@lobehub/icons';
import { import {
@ -342,6 +343,8 @@ export function getChannelIcon(channelType) {
return <FastGPT.Color size={iconSize} />; return <FastGPT.Color size={iconSize} />;
case 21: // AI Proxy case 21: // AI Proxy
case 44: // MokaAI M3E case 44: // MokaAI M3E
case 53: // SubModel
return <SubModel size={iconSize} />;
default: default:
return null; // return null; //
} }