xAI -> Grok

This commit is contained in:
Andrew Pareles 2025-03-05 23:09:37 -08:00
parent 1be8d17899
commit 3bb9d5b3a5
2 changed files with 2 additions and 2 deletions

View file

@ -444,7 +444,7 @@ export const FeaturesTab = () => {
<div className='flex gap-x-4 items-start justify-around mt-4 mb-16'>
<div>
<h4 className={`text-base`}>{displayInfoOfFeatureName('Autocomplete')}</h4>
<div className='text-sm italic text-void-fg-3 my-1'>Experimental. Only works with FIM models.</div>
<div className='text-sm italic text-void-fg-3 my-1'>Experimental. Only works with models that support FIM.</div>
<div className='flex items-center gap-x-2'>
<VoidSwitch size='xs' value={voidSettingsState.globalSettings.enableAutocomplete} onChange={(newVal) => voidSettingsService.setGlobalSetting('enableAutocomplete', newVal)} label={voidSettingsState.globalSettings.enableAutocomplete ? 'Enabled' : 'Disabled'} />
</div>

View file

@ -197,7 +197,7 @@ export const displayInfoOfProviderName = (providerName: ProviderName): DisplayIn
}
else if (providerName === 'xAI') {
return {
title: 'xAI API',
title: 'Grok API',
}
}