Skip to content

Commit

Permalink
Add a space between model and provider in ModelSelector to improve re…
Browse files Browse the repository at this point in the history
…adability.
  • Loading branch information
Dakai authored Sep 13, 2024
1 parent df62736 commit 79cfbac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ export function ChatActions(props: {
items={models.map((m) => ({
title: `${m.displayName}${
m?.provider?.providerName
? "(" + m?.provider?.providerName + ")"
? " (" + m?.provider?.providerName + ")"
: ""
}`,
value: `${m.name}@${m?.provider?.providerName}`,
Expand Down

0 comments on commit 79cfbac

Please sign in to comment.