Spaces:
Sleeping
Sleeping
Commit
·
683c2ff
1
Parent(s):
58cad98
change humelo voice
Browse files
models.py
CHANGED
|
@@ -632,7 +632,7 @@ def insert_initial_models():
|
|
| 632 |
# Humelo DIVE TTS (한국어 특화) - API 키 있을 때만 활성화
|
| 633 |
Model(
|
| 634 |
id="humelo-sia",
|
| 635 |
-
name="Humelo DIVE (
|
| 636 |
model_type=ModelType.TTS,
|
| 637 |
is_open=False,
|
| 638 |
is_active=has_humelo,
|
|
|
|
| 632 |
# Humelo DIVE TTS (한국어 특화) - API 키 있을 때만 활성화
|
| 633 |
Model(
|
| 634 |
id="humelo-sia",
|
| 635 |
+
name="Humelo DIVE (리아)",
|
| 636 |
model_type=ModelType.TTS,
|
| 637 |
is_open=False,
|
| 638 |
is_active=has_humelo,
|
tts.py
CHANGED
|
@@ -488,7 +488,7 @@ def predict_tts(text: str, model: str) -> str:
|
|
| 488 |
elif provider == "humelo":
|
| 489 |
audio_path = predict_humelo_tts(
|
| 490 |
text,
|
| 491 |
-
config.get("voice", "
|
| 492 |
config.get("emotion", "neutral"),
|
| 493 |
)
|
| 494 |
# Humelo might return MP3 or WAV, check extension
|
|
|
|
| 488 |
elif provider == "humelo":
|
| 489 |
audio_path = predict_humelo_tts(
|
| 490 |
text,
|
| 491 |
+
config.get("voice", "리아"),
|
| 492 |
config.get("emotion", "neutral"),
|
| 493 |
)
|
| 494 |
# Humelo might return MP3 or WAV, check extension
|