chore: image custom params

This commit is contained in:
jialin
2024-11-27 17:07:22 +08:00
parent ba76498acc
commit 230120fff5
19 changed files with 473 additions and 206 deletions
+105
View File
@@ -0,0 +1,105 @@
export const HuggingFaceModels = [
{
type: 'stt',
org: 'funasr',
name: 'paraformer-zh'
},
{
type: 'stt',
org: 'funasr',
name: 'paraformer-zh-streaming'
},
{
type: 'stt',
org: 'funasr',
name: 'paraformer-en'
},
{
type: 'stt',
org: 'funasr',
name: 'conformer-en'
},
{
type: 'stt',
org: 'Qwen',
name: 'Qwen-Audio'
},
{
type: 'stt',
org: 'Qwen',
name: 'Qwen-Audio-Chat'
},
{
type: 'stt',
org: 'FunAudioLLM',
name: 'SenseVoiceSmall'
},
{
type: 'stt',
org: 'Systran',
name: '*'
},
{
type: 'tts',
org: 'suno',
name: 'bark'
},
{
type: 'tts',
org: 'suno',
name: 'bark-small'
},
{
type: 'tts',
org: 'FunAudioLLM',
name: 'CosyVoice-300M-Instruct'
},
{
type: 'tts',
org: 'FunAudioLLM',
name: 'CosyVoice-300M-SFT'
},
{
type: 'tts',
org: 'FunAudioLLM',
name: 'CosyVoice-300M'
}
];
export const ModelScopeModels = [
{
type: 'stt',
org: 'iic',
name: 'SenseVoiceSmall'
},
{
type: 'stt',
org: 'iic',
name: 'Whisper-large-v3'
},
{
type: 'stt',
org: 'iic',
name: 'Whisper-large-v3-turbo'
},
{
type: 'tts',
org: 'iic',
name: 'CosyVoice-300M-Instruct'
},
{
type: 'tts',
org: 'iic',
name: 'CosyVoice-300M'
},
{
type: 'tts',
org: 'iic',
name: 'CosyVoice-300M-25Hz'
},
{
type: 'tts',
org: 'iic',
name: 'CosyVoice-300M-SFT'
}
];