aboutsummaryrefslogtreecommitdiff
path: root/app/converter/clients/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/converter/clients/__init__.py')
-rw-r--r--app/converter/clients/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/converter/clients/__init__.py b/app/converter/clients/__init__.py
index e216011..6ae8850 100644
--- a/app/converter/clients/__init__.py
+++ b/app/converter/clients/__init__.py
@@ -15,7 +15,7 @@ BACKEND_AUDIOCPP = "audiocpp"
BACKENDS = (BACKEND_AUDIOCPP, BACKEND_QWEN, BACKEND_FASTER)
from .base import BaseTTSClient, ConversionCancelled, VOICE_MODE_CLONE, \
- VOICE_MODE_CUSTOM, VOICE_MODES, resolve_request_seed
+ VOICE_MODE_CUSTOM, VOICE_MODE_DESIGN, VOICE_MODES, resolve_request_seed
from .languages import LANGUAGE_ISO_CODES, TTS_LANGUAGES, \
TTS_LANGUAGE_ALIASES, normalize_language
from .speakers import QWEN3_TTS_SPEAKERS, SPEAKER_DISPLAY_NAMES, \
@@ -44,7 +44,7 @@ from .audiocpp import (
__all__ = [
# vocabulary
"BACKEND_QWEN", "BACKEND_FASTER", "BACKEND_AUDIOCPP", "BACKENDS",
- "VOICE_MODE_CUSTOM", "VOICE_MODE_CLONE", "VOICE_MODES",
+ "VOICE_MODE_CUSTOM", "VOICE_MODE_CLONE", "VOICE_MODE_DESIGN", "VOICE_MODES",
# clients
"BaseTTSClient", "ConversionCancelled", "resolve_request_seed",
"QwenTTSClient", "FasterTTSClient", "AudioCppTTSClient",