Skip to content

Commit

Permalink
feature: show the model name currently in use
Browse files Browse the repository at this point in the history
  • Loading branch information
QAbot-zh committed Aug 14, 2024
1 parent cf1c8e8 commit 3c618f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/components/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 3c618f7

Please sign in to comment.