mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-01 23:56:39 +08:00
feature: show the model name currently in use
This commit is contained in:
parent
cf1c8e8f2a
commit
3c618f7970
@ -1563,7 +1563,9 @@ function _Chat() {
|
|||||||
<div className={styles["chat-message-action-date"]}>
|
<div className={styles["chat-message-action-date"]}>
|
||||||
{isContext
|
{isContext
|
||||||
? Locale.Chat.IsContext
|
? Locale.Chat.IsContext
|
||||||
: message.date.toLocaleString()}
|
: `${message.date.toLocaleString()}${
|
||||||
|
message.model ? ` - Model: ${message.model}` : ''
|
||||||
|
}`}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user