Skip to content

Commit

Permalink
feat: add model name
Browse files Browse the repository at this point in the history
  • Loading branch information
DDMeaqua committed Aug 13, 2024
1 parent edb92f7 commit fb5fc13
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/components/chat.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,12 @@
flex-wrap: nowrap;
}
}

.chat-model-name {
font-size: 12px;
color: var(--black);
margin-left: 6px;
}
}

.chat-message-container {
Expand Down
5 changes: 5 additions & 0 deletions app/components/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1524,6 +1524,11 @@ function _Chat() {
</>
)}
</div>
{!isUser && (
<div className={styles["chat-model-name"]}>
{message.model}
</div>
)}

{showActions && (
<div className={styles["chat-message-actions"]}>
Expand Down

0 comments on commit fb5fc13

Please sign in to comment.