Merge pull request #3216 from mayurdd/patch-1

Adding include_language_detection param to Elevenlabs Realtime STT
This commit is contained in:
Mark Backman
2026-01-05 17:01:02 -05:00
committed by GitHub
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
- Updated `ElevenLabsRealtimeSTTService` to accept the `include_language_detection` parameter to detect language.
```python
stt = ElevenLabsRealtimeSTTService(
api_key=os.getenv("ELEVENLABS_API_KEY"),
include_language_detection=True
)
```