Update Auto_VoxNovel.py
Browse files- Auto_VoxNovel.py +2 -1
Auto_VoxNovel.py
CHANGED
@@ -1650,7 +1650,8 @@ def select_tts_model():
|
|
1650 |
|
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:
|
|
|
1650 |
|
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 |
+
all_models = additional_models + models # Combine lists putting styletts2 at the beginning instead
|
1655 |
current_model = all_models[0] # Default to the first model in the combined list
|
1656 |
|
1657 |
while True:
|