Merge pull request #5428 from Dakai/main

Add a space between model and provider in ModelSelector to improve readability.
This commit is contained in:
Dogtiti 2024-09-14 09:57:52 +08:00 committed by GitHub
commit 4eb4c31438
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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}`,