diff options
Diffstat (limited to 'converter/config.py')
| -rw-r--r-- | converter/config.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/converter/config.py b/converter/config.py index 5542bae..b4d7f22 100644 --- a/converter/config.py +++ b/converter/config.py @@ -11,6 +11,14 @@ from pathlib import Path BASE_DIR = Path(__file__).resolve().parent.parent # ============================================================================= +# VOICE MODES +# ============================================================================= + +VOICE_MODE_CUSTOM = "custom_voice" +VOICE_MODE_CLONE = "voice_clone" +VOICE_MODES = (VOICE_MODE_CUSTOM, VOICE_MODE_CLONE) + +# ============================================================================= # QWEN API CONFIGURATION # ============================================================================= |
