From 145b333ce4a761a6d7ebce3176d41cfde64aa948 Mon Sep 17 00:00:00 2001 From: ecwu Date: Fri, 20 Dec 2024 18:49:10 +0800 Subject: [PATCH] Remove CopiedHint component and update button styles in Message component; add response model name display --- src/message.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/message.tsx b/src/message.tsx index 1a9c7ce..916ac66 100644 --- a/src/message.tsx +++ b/src/message.tsx @@ -198,7 +198,6 @@ export default function Message(props: Props) { setChatStore={setChatStore} /> )} - {showCopiedHint && } {chatStore.develop_mode && (
@@ -265,6 +265,11 @@ export default function Message(props: Props) { /> {Tr("color")} + {chat.response_model_name && ( + <> + {chat.response_model_name} + + )}
)}