We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6632429 commit 8d61cd3Copy full SHA for 8d61cd3
ui/packages/platform/src/pages/Bot/SettingsDialog/SettingsDialog.tsx
@@ -356,7 +356,7 @@ export const SettingsDialog = (props: PublicChatDialogProps) => {
356
key={`${model.vendor}/${model.name}`}
357
value={`${model.vendor}/${model.name}`}
358
control={<Radio />}
359
- label={model.name}
+ label={`${model.name} ${model.comment ? model.comment : ''}`}
360
/>
361
)
362
}
ui/packages/platform/src/types/api/entities/bot.ts
@@ -30,6 +30,7 @@ export type BotMessageWithDebugInfo = BotMessage & {
30
31
32
export type AiModel = {
33
+ comment: string;
34
name: string;
35
vendor: string;
36
isThirdParty: boolean;
0 commit comments