diff --git a/web/pages/VoiceLibrary.tsx b/web/pages/VoiceLibrary.tsx index ea8f234..a19e1c5 100644 --- a/web/pages/VoiceLibrary.tsx +++ b/web/pages/VoiceLibrary.tsx @@ -5,6 +5,11 @@ import { Voice } from '../types'; import { createVoice, deleteVoice, fetchVoices, previewVoice, updateVoice } from '../services/backendApi'; const SILICONFLOW_DEFAULT_MODEL = 'FunAudioLLM/CosyVoice2-0.5B'; +const SILICONFLOW_MODEL_SUGGESTIONS = [ + 'FunAudioLLM/CosyVoice2-0.5B', + 'fishaudio/fish-speech-1.5', + 'fishaudio/fish-speech-1.4', +]; const buildSiliconflowVoiceKey = (rawId: string, model: string): string => { const id = (rawId || '').trim(); @@ -408,15 +413,18 @@ const AddVoiceModal: React.FC<{
- + placeholder="例如: FunAudioLLM/CosyVoice2-0.5B" + list="siliconflow-model-options" + /> + + {SILICONFLOW_MODEL_SUGGESTIONS.map((m) => ( +