drewThomasson commited on
Commit
ac5e0f0
·
verified ·
1 Parent(s): d8c92d3

Update Auto_VoxNovel.py

Browse files
Files changed (1) hide show
  1. Auto_VoxNovel.py +2 -2
Auto_VoxNovel.py CHANGED
@@ -1651,8 +1651,8 @@ def select_tts_model():
1651
  models = TTS().list_models() # Fetches all available TTS models
1652
  additional_models = ["StyleTTS2"] # Manually add any special or last-minute models here
1653
  all_models = models + additional_models # Combine lists
1654
- current_model = all_models[0] # Default to the first model in the combined list
1655
-
1656
  while True:
1657
  print(f"The TTS model currently selected is {current_model}.")
1658
  #response = input("Would you like to keep this model? (yes/no): ").strip().lower()
 
1651
  models = TTS().list_models() # Fetches all available TTS models
1652
  additional_models = ["StyleTTS2"] # Manually add any special or last-minute models here
1653
  all_models = models + additional_models # Combine lists
1654
+ #current_model = all_models[0] # Default to the first model in the combined list
1655
+ current_model = "StyleTTS2" #Default to StyleTTS2
1656
  while True:
1657
  print(f"The TTS model currently selected is {current_model}.")
1658
  #response = input("Would you like to keep this model? (yes/no): ").strip().lower()