Merge pull request #356 from pipecat-ai/aleix/eleven_turbo_v2_5

services(elevenlabs): update default model to eleven_turbo_v2_5
This commit is contained in:
Aleix Conchillo Flaqué
2024-08-09 09:34:47 -07:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -28,6 +28,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- `ElevenLabsTTSService` now uses `eleven_turbo_v2_5` model by default.
- `BotSpeakingFrame` is now a control frame.
- `StartFrame` is now a control frame similar to `EndFrame`.

View File

@@ -22,7 +22,7 @@ class ElevenLabsTTSService(TTSService):
api_key: str,
voice_id: str,
aiohttp_session: aiohttp.ClientSession,
model: str = "eleven_turbo_v2",
model: str = "eleven_turbo_v2_5",
**kwargs):
super().__init__(**kwargs)