Feat: add TTS support for SILICONFLOW. (#6264)

### What problem does this PR solve?

#6244

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
Kevin Hu
2025-03-19 12:52:12 +08:00
committed by GitHub
parent 41e112294b
commit c6e1a2ca8a
2 changed files with 38 additions and 1 deletions

View File

@ -143,6 +143,7 @@ from .tts_model import (
SparkTTS,
XinferenceTTS,
GPUStackTTS,
SILICONFLOWTTS
)
EmbeddingModel = {
@ -278,4 +279,5 @@ TTSModel = {
"XunFei Spark": SparkTTS,
"Xinference": XinferenceTTS,
"GPUStack": GPUStackTTS,
"SILICONFLOW": SILICONFLOWTTS,
}