diff --git a/tools/ui/src/lib/constants/settings-keys.constants.ts b/tools/ui/src/lib/constants/settings-keys.constants.ts index c8761c7587..18edeb6fd8 100644 --- a/tools/ui/src/lib/constants/settings-keys.constants.ts +++ b/tools/ui/src/lib/constants/settings-keys.constants.ts @@ -56,6 +56,7 @@ export const SETTINGS_KEYS = { SHOW_MESSAGE_STATS: 'showMessageStats', SHOW_MODEL_QUANTIZATION: 'showModelQuantization', SHOW_MODEL_TAGS: 'showModelTags', + SHOW_MODEL_ORG_NAME_IN_TRIGGER: 'showModelOrgNameInTrigger', SHOW_RAW_MODEL_NAMES: 'showRawModelNames', SHOW_RAW_OUTPUT_SWITCH: 'showRawOutputSwitch', SHOW_SYSTEM_MESSAGE: 'showSystemMessage', diff --git a/tools/ui/src/lib/constants/settings.constants.ts b/tools/ui/src/lib/constants/settings.constants.ts index b4699af197..677548e839 100644 --- a/tools/ui/src/lib/constants/settings.constants.ts +++ b/tools/ui/src/lib/constants/settings.constants.ts @@ -283,6 +283,13 @@ export const SETTINGS_REGISTRY: SettingsSectionEntry[] = [ label: 'Show model tags', type: SettingsFieldType.CHECKBOX }, + { + defaultValue: false, + help: 'Display the organization name in the model selector trigger button.', + key: SETTINGS_KEYS.SHOW_MODEL_ORG_NAME_IN_TRIGGER, + label: 'Show organization name in model selector trigger', + type: SettingsFieldType.CHECKBOX + }, { defaultValue: false, help: 'Display the current build version in the bottom-right corner of the interface.',