From 477ac3e827e3bdc9f14583fc3aa8db1fa2d27c52 Mon Sep 17 00:00:00 2001 From: historia Date: Wed, 26 Aug 2026 21:22:40 -0400 Subject: feat: design model support for qwen-tts backend. remove unnecessary port split for qwen models --- app/converter/clients/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/converter/clients/__init__.py') 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", -- cgit v1.2.3