feature: show the model name currently in use

This commit is contained in:
Q.A.zh 2024-08-14 02:15:22 +00:00
parent cf1c8e8f2a
commit 3c618f7970

View File

@ -1563,7 +1563,9 @@ function _Chat() {
<div className={styles["chat-message-action-date"]}>
{isContext
? Locale.Chat.IsContext
: message.date.toLocaleString()}
: `${message.date.toLocaleString()}${
message.model ? ` - Model: ${message.model}` : ''
}`}
</div>
</div>
</div>