feat: update model identifiers and names in configuration

- Changed model ID from 'mixtral-8x7b-32768' to 'mistral-saba-24b' and updated its name to 'Mistral Saba 24B'.
- Updated model ID from 'gemma-7b-it' to 'gemma-9b-it' and changed its name to 'Gemma 9B'.
- Enhanced clarity and consistency in model naming conventions.
This commit is contained in:
kangfenmao 2025-03-25 20:18:14 +08:00
parent 40cac47136
commit 2055615aca
2 changed files with 6 additions and 6 deletions

View File

@ -1541,15 +1541,15 @@ export const SYSTEM_MODELS: Record<string, Model[]> = {
group: 'Llama3'
},
{
id: 'mixtral-8x7b-32768',
id: 'mistral-saba-24b',
provider: 'groq',
name: 'Mixtral 8x7B',
group: 'Mixtral'
name: 'Mistral Saba 24B',
group: 'Mistral'
},
{
id: 'gemma-7b-it',
id: 'gemma-9b-it',
provider: 'groq',
name: 'Gemma 7B',
name: 'Gemma 9B',
group: 'Gemma'
}
],

View File

@ -108,7 +108,7 @@ const DisplaySettings: FC = () => {
<SettingDivider />
<SettingRow>
<SettingRowTitle>{t('settings.theme.title')}</SettingRowTitle>
<Segmented value={theme} onChange={setTheme} options={themeOptions} />
<Segmented value={theme} shape="round" onChange={setTheme} options={themeOptions} />
</SettingRow>
{isMac && (
<>