We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 122aa94 + fb5fc13 commit 87325faCopy full SHA for 87325fa
app/components/chat.module.scss
@@ -346,6 +346,12 @@
346
flex-wrap: nowrap;
347
}
348
349
+
350
+ .chat-model-name {
351
+ font-size: 12px;
352
+ color: var(--black);
353
+ margin-left: 6px;
354
+ }
355
356
357
.chat-message-container {
app/components/chat.tsx
@@ -1524,6 +1524,11 @@ function _Chat() {
1524
</>
1525
)}
1526
</div>
1527
+ {!isUser && (
1528
+ <div className={styles["chat-model-name"]}>
1529
+ {message.model}
1530
+ </div>
1531
+ )}
1532
1533
{showActions && (
1534
<div className={styles["chat-message-actions"]}>
0 commit comments