chore: add intern and moka provider (#3640)

* chore: add intern and moka provider

* fix: svg show issue
This commit is contained in:
Yee
2025-01-21 22:32:49 +08:00
committed by GitHub
parent d491105752
commit e02a7ab350
8 changed files with 66 additions and 0 deletions

View File

@@ -23,6 +23,8 @@ export type ModelProviderIdType =
| 'Ollama'
| 'BAAI'
| 'FishAudio'
| 'Intern'
| 'Moka'
| 'Other';
export type ModelProviderType = {
@@ -143,6 +145,16 @@ export const ModelProviderList: ModelProviderType[] = [
name: 'FishAudio',
avatar: 'model/fishaudio'
},
{
id: 'Intern',
name: i18nT('common:model_intern'),
avatar: 'model/intern'
},
{
id: 'Moka',
name: i18nT('common:model_moka'),
avatar: 'model/moka'
},
{
id: 'Other',
name: i18nT('common:model_other'),