mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-10 17:44:13 +08:00
fix emoji issue for doubao and glm's congview & congvideox
This commit is contained in:
@@ -80,9 +80,13 @@ export function Avatar(props: { model?: ModelType; avatar?: string }) {
|
||||
LlmIcon = BotIconGrok;
|
||||
} else if (modelName.startsWith("hunyuan")) {
|
||||
LlmIcon = BotIconHunyuan;
|
||||
} else if (modelName.startsWith("doubao")) {
|
||||
} else if (modelName.startsWith("doubao") || modelName.startsWith("ep-")) {
|
||||
LlmIcon = BotIconDoubao;
|
||||
} else if (modelName.startsWith("glm")) {
|
||||
} else if (
|
||||
modelName.startsWith("glm") ||
|
||||
modelName.startsWith("cogview-") ||
|
||||
modelName.startsWith("cogvideox-")
|
||||
) {
|
||||
LlmIcon = BotIconChatglm;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user