Update RimeHttpTTSService to use mistv2 model by default

This commit is contained in:
Mark Backman
2025-02-07 09:20:28 -05:00
parent 54f64b8dad
commit 8020db350e
2 changed files with 3 additions and 1 deletions

View File

@@ -23,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- `RimeHttpTTSService` now uses the `mistv2` model by default.
- Improved error handling in `AzureTTSService` to properly detect and log
synthesis cancellation errors.

View File

@@ -361,7 +361,7 @@ class RimeHttpTTSService(TTSService):
*,
api_key: str,
voice_id: str = "eva",
model: str = "mist",
model: str = "mistv2",
sample_rate: Optional[int] = None,
params: InputParams = InputParams(),
**kwargs,