VictorKola commited on
Commit
eff35ed
·
verified ·
1 Parent(s): d537263

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -47,7 +47,7 @@ api_key = st.text_input("API Key (if your model needs one)", type="password")
47
  @st.cache_resource(show_spinner=False)
48
  def load_tts_model():
49
  # replace with your chosen multispeaker/cloning model
50
- model_name = "tts_models/multispeaker/vctk/vits"
51
  # Coqui TTS uses its own GPU flag
52
  return TTS(model_name=model_name, progress_bar=False, gpu=torch.cuda.is_available())
53
 
 
47
  @st.cache_resource(show_spinner=False)
48
  def load_tts_model():
49
  # replace with your chosen multispeaker/cloning model
50
+ model_name = "IndexTeam/IndexTTS-1.5"
51
  # Coqui TTS uses its own GPU flag
52
  return TTS(model_name=model_name, progress_bar=False, gpu=torch.cuda.is_available())
53