Skip to content

Commit 87325fa

Browse files
authored
Merge pull request #5270 from DDMeaqua/main
feat: add model name to conversation page
2 parents 122aa94 + fb5fc13 commit 87325fa

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

app/components/chat.module.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,12 @@
346346
flex-wrap: nowrap;
347347
}
348348
}
349+
350+
.chat-model-name {
351+
font-size: 12px;
352+
color: var(--black);
353+
margin-left: 6px;
354+
}
349355
}
350356

351357
.chat-message-container {

app/components/chat.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1524,6 +1524,11 @@ function _Chat() {
15241524
</>
15251525
)}
15261526
</div>
1527+
{!isUser && (
1528+
<div className={styles["chat-model-name"]}>
1529+
{message.model}
1530+
</div>
1531+
)}
15271532

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

0 commit comments

Comments
 (0)