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 ba194e3947
commit cc6796ac2c
2 changed files with 6 additions and 6 deletions

View File

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

View File

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