Skip to content

Commit

Permalink
✨ feat(chat): 对话的时候,在工具栏直接显示当前模型的名称
Browse files Browse the repository at this point in the history
  • Loading branch information
frostime committed Aug 7, 2024
1 parent 1411935 commit 72034d6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/components/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,18 @@ export function ChatActions(props: {
}}
/>
)}

<div
style={{
display: "flex",
alignItems: "top",
flex: 1,
fontSize: "0.7rem",
}}
>
<div style={{ flex: 1 }}></div>
<span style={{ opacity: 0.8 }}>{currentModelName}</span>
</div>
</div>
);
}
Expand Down

0 comments on commit 72034d6

Please sign in to comment.