Description
# ElevenLabs Python Library  [](https://buildwithfern.com/?utm_source=fern-elevenlabs/elevenlabs-python/readme) [](https://discord.gg/elevenlabs) [](https://twitter.com/elevenlabsio) [](https://pypi.org/project/elevenlabs/) [](https://pepy.tech/project/elevenlabs) The official Python SDK for [ElevenLabs](https://elevenlabs.io/). ElevenLabs brings the most compelling, rich and lifelike voices to creators and developers in just a few lines of code. ## π API & Docs Check out the [HTTP API documentation](https://elevenlabs.io/docs/api-reference). ## Install ```bash pip install elevenlabs ``` ## Usage ### Main Models 1. **Eleven v3** (`eleven_v3`) - Dramatic delivery and performances - 70+ languages supported - Supported for natural multi-speaker dialogue 2. **Eleven Multilingual v2** (`eleven_multilingual_v2`) - Excels in stability, language diversity, and accent accuracy - Supports 29 languages - Recommended for most use cases 3. **Eleven Flash v2.5** (`eleven_flash_v2_5`) - Ultra-low latency - Supports 32 languages - Faster model, 50% lower price per character 4. **Eleven Turbo v2.5** (`eleven_turbo_v2_5`) - Good balance of quality and latency - Ideal for developer use cases where speed is crucial - Supports 32 languages For more detailed information about these models and others, visit the [ElevenLabs Models documentation](https://elevenlabs.io/docs/models). ```py from dotenv import load_dotenv from elevenlabs.client import ElevenLabs from elevenlabs.play import play load_dotenv() elevenlabs = ElevenLabs() audio = elevenlabs.text_to_speech.convert( text="The first move is what sets everything in motion.", voice_id="JBFqnCBsd6RMkjVDRZzb", model_id="eleven_v3", output_format="mp3_44100_128", ) play(audio) ``` <details> <summary> Play </summary> π§ **Try it out!** Want to hear our voices in action? Visit the [ElevenLabs Voice Lab](https://elevenlabs.io/voice-lab) to experiment with different voices, languages, and settings. </details> ## Voices List all your available voices with `search()`. ```py from elevenlabs.client import ElevenLabs elevenlabs = ElevenLabs( api_key="YOUR_API_KEY", ) response = elevenlabs.voices.search() print(response.voices) ``` For information about the structure of the voices output, please refer to the [official ElevenLabs API documentation for Get Voices](https://elevenlabs.io/docs/api-reference/get-voices). Build a voice object with custom settings to personalize the voice style, or call `elevenlabs.voices.settings.get("your-voice-id")` to get the default settings for the voice. </details> ## Clone Voice Clone your voice in an instant. Note that voice cloning requires an API key, see below. ```py from elevenlabs.client import ElevenLabs from elevenlabs.play import play elevenlabs = ElevenLabs( api_key="YOUR_API_KEY", ) voice = elevenlabs.voices.ivc.create( name="Alex", description="An old American male voice with a slight hoarseness in his throat. Perfect for news", # Optional files=["./sample_0.mp3", "./sample_1.mp3", "./sample_2.mp3"], ) ``` ## Streaming Stream audio in real-time, as it's being generated. ```py from elevenlabs import stream from elevenlabs.client import ElevenLabs elevenlabs = ElevenLabs( api_key="YOUR_API_KEY", ) audio_stream = elevenlabs.text_to_speech.stream( text="This is a test", voice_id="JBFqnCBsd6RMkjVDRZzb", model_id="eleven_multilingual_v2" ) #Β option 1: play the streamed audio locally stream(audio_stream) #Β option 2: process the audio bytes manually for chunk in audio_stream: if isinstance(chunk, bytes): print(chunk) ``` ## Async Client Use `AsyncElevenLabs` if you want to make API calls asynchronously. ```python import asyncio from elevenlabs.client import AsyncElevenLabs elevenlabs = AsyncElevenLabs( api_key="MY_API_KEY" ) async def print_models() -> None: models = await elevenlabs.models.list() print(models) asyncio.run(print_models()) ``` ## ElevenAgents Build interactive AI agents with real-time audio capabilities using ElevenAgents. ### Basic Usage ```python from elevenlabs.client import ElevenLabs from elevenlabs.conversational_ai.conversation import Conversation, ClientTools from elevenlabs.conversational_ai.default_audio_interface import DefaultAudioInterface
Release History
| Version | Changes | Urgency | Date |
|---|---|---|---|
| 2.44.0 | Imported from PyPI (2.44.0) | Low | 4/21/2026 |
| v2.44.0 | ## What's Changed * :herb: Fern Regeneration -- April 21, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/775 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.43.0...v2.44.0 | High | 4/21/2026 |
| v2.43.0 | ## What's Changed * Add AGENTS.md with Fern-generated code guidelines by @kraenhansen in https://github.com/elevenlabs/elevenlabs-python/pull/764 * Add AGENTS.md to .fernignore by @kraenhansen in https://github.com/elevenlabs/elevenlabs-python/pull/769 * Fix: update imports for local only tests by @fern-support in https://github.com/elevenlabs/elevenlabs-python/pull/767 * :herb: Fern Regeneration -- April 13, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/770 | Medium | 4/13/2026 |
| v2.42.0 | ## What's Changed * :herb: Fern Regeneration -- April 7, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/762 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.41.0...v2.42.0 | Medium | 4/7/2026 |
| v2.41.0 | ## What's Changed * fix: make audio_interface optional for text-only chat mode by @mvanhorn in https://github.com/elevenlabs/elevenlabs-python/pull/749 * :herb: Fern Regeneration -- April 1, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/756 ## New Contributors * @mvanhorn made their first contribution in https://github.com/elevenlabs/elevenlabs-python/pull/749 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.40.0...v2.41.0 | Medium | 4/1/2026 |
| v2.40.0 | ## What's Changed * Add environment parameter to conversational AI by @AngeloGiacco in https://github.com/elevenlabs/elevenlabs-python/pull/745 * :herb: Fern Regeneration -- March 23, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/750 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.39.1...v2.40.0 | Medium | 3/23/2026 |
| v2.39.1 | ## What's Changed * :herb: Fern Regeneration -- March 12, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/744 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.39.0...v2.39.1 | Low | 3/12/2026 |
| v2.39.0 | > [!NOTE] > While we intended for this release to contain #744, we failed and instead its in [v2.39.1](https://github.com/elevenlabs/elevenlabs-python/releases/tag/v2.39.1). ## What's Changed * add multimodal_message WebSocket event by @sedatcagdas in https://github.com/elevenlabs/elevenlabs-python/pull/743 ## New Contributors * @sedatcagdas made their first contribution in https://github.com/elevenlabs/elevenlabs-python/pull/743 **Full Changelog**: https://github.com/elevenlabs/elev | Low | 3/12/2026 |
| v2.38.1 | ## What's Changed * [Music] Parse CRLF correctly for music detailed endpoint by @lpastusz in https://github.com/elevenlabs/elevenlabs-python/pull/741 * Patch for music by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/742 ## New Contributors * @lpastusz made their first contribution in https://github.com/elevenlabs/elevenlabs-python/pull/741 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.38.0...v2.38.1 | Low | 3/6/2026 |
| v2.38.0 | ## What's Changed * :herb: Fern Regeneration -- March 5, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/740 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.37.0...v2.38.0 | Low | 3/5/2026 |
| v2.37.0 | ## What's Changed * [music] support new params and surfacing song id by @vijaypemmaraju in https://github.com/elevenlabs/elevenlabs-python/pull/731 * :herb: Fern Regeneration -- February 27, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/736 ## New Contributors * @vijaypemmaraju made their first contribution in https://github.com/elevenlabs/elevenlabs-python/pull/731 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.36.1...v2. | Low | 2/27/2026 |
| v2.36.1 | ## What's Changed * [Music] Add missing music parameters by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/733 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.36.0...v2.36.1 | Low | 2/19/2026 |
| v2.36.0 | ## What's Changed * ElevenAgents rebrand by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/729 * :herb: Fern Regeneration -- February 16, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/730 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.35.0...v2.36.0 | Low | 2/16/2026 |
| v2.35.0 | ## What's Changed * :herb: Fern Regeneration -- February 9, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/728 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.34.0...v2.35.0 | Low | 2/9/2026 |
| v2.34.0 | ## What's Changed * :herb: Fern Regeneration -- February 2, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/726 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.33.1...v2.34.0 | Low | 2/2/2026 |
| v2.33.1 | ## What's Changed * [Scribe] Fix bug with URL streaming by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/725 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.33.0...v2.33.1 | Low | 1/30/2026 |
| v2.33.0 | ## What's Changed * [Agents] Fixed bug with init and user_id by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/720 * [Agents] Add audio alignment callback by @alexgoodison in https://github.com/elevenlabs/elevenlabs-python/pull/713 * :herb: Fern Regeneration -- January 29, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/724 ## New Contributors * @alexgoodison made their first contribution in https://github.com/elevenlabs/elevenlabs-python | Low | 1/29/2026 |
| v2.32.0 | ## What's Changed * :herb: Fern Regeneration -- January 26, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/722 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.31.0...v2.32.0 | Low | 1/26/2026 |
| v2.31.0 | ## What's Changed * :herb: Fern Regeneration -- January 19, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/719 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.30.0...v2.31.0 | Low | 1/19/2026 |
| v2.30.0 | ## What's Changed * :herb: Fern Regeneration -- January 13, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/714 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.29.0...v2.30.0 | Low | 1/13/2026 |
| v2.29.0 | ## What's Changed * :herb: Fern Regeneration -- January 9, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/711 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.28.0...v2.29.0 | Low | 1/9/2026 |
| v2.28.0 | ## What's Changed * :herb: Fern Regeneration -- January 5, 2026 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/710 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.27.0...v2.28.0 | Low | 1/5/2026 |
| v2.27.0 | ## What's Changed * [Scribe] Add audio format correctly and better typing by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/705 * :herb: Fern Regeneration -- December 15, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/706 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.26.1...v2.27.0 | Low | 12/15/2025 |
| v2.26.1 | ## What's Changed * [On-Prem] Extend on prem agent config by @lsquires in https://github.com/elevenlabs/elevenlabs-python/pull/701 * Bump version for release by @lsquires in https://github.com/elevenlabs/elevenlabs-python/pull/702 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.26.0...v2.26.1 | Low | 12/9/2025 |
| v2.26.0 | ## What's Changed * [agents+stt ws] set user triggered disconnection to 1000 by @AngeloGiacco in https://github.com/elevenlabs/elevenlabs-python/pull/700 * :herb: Fern Regeneration -- December 8, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/699 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.25.0...v2.26.0 | Low | 12/8/2025 |
| v2.25.0 | ## What's Changed * [ci] Use frozen pnpm lockfile in the CI by @galargh in https://github.com/elevenlabs/elevenlabs-python/pull/690 * [On-Prem] Support on prem agent config by @lsquires in https://github.com/elevenlabs/elevenlabs-python/pull/691 * Scribe previous_text and all event types by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/695 * :herb: Fern Regeneration -- December 1, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/697 ## Ne | Low | 12/1/2025 |
| v2.24.0 | ## What's Changed * Use OIDC for publishing to pypi by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/687 * :herb: Fern Regeneration -- November 21, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/688 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.23.0...v2.24.0 | Low | 11/21/2025 |
| v2.23.0 | ## What's Changed * Test that all types can be imported by @fern-support in https://github.com/elevenlabs/elevenlabs-python/pull/680 * [Scribe] Add include_timestamps and quota_exceeded by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/682 * :herb: Fern Regeneration -- November 14, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/684 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.22.1...v2.23.0 | Low | 11/14/2025 |
| v2.22.1 | ## What's Changed * Update scribe endpoint by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/667 * Fixing circular imports (option 2) by @fern-support in https://github.com/elevenlabs/elevenlabs-python/pull/675 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.22.0...v2.22.1 | Low | 11/11/2025 |
| v2.22.0 | ## What's Changed * :herb: Fern Regeneration -- November 3, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/666 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.21.0...v2.22.0 | Low | 11/5/2025 |
| v2.21.0 | ## What's Changed * Remove fernignored clients with optional file params by @fern-support in https://github.com/elevenlabs/elevenlabs-python/pull/659 * :herb: Fern Regeneration -- October 29, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/663 * Replace prints with logging by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/664 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.20.1...v2.21.0 | Low | 10/29/2025 |
| v2.20.1 | ## What's Changed * Manually fix non-optional file params in client methods by @fern-support in https://github.com/elevenlabs/elevenlabs-python/pull/657 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.20.0...v2.20.1 | Low | 10/23/2025 |
| v2.20.0 | ## What's Changed * :herb: Fern Regeneration -- October 21, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/655 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.19.1...v2.20.0 | Low | 10/21/2025 |
| v2.19.0 | ## What's Changed * [ASR] Helper method for scribe realtime by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/648 * :herb: Fern Regeneration -- October 20, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/651 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.18.0...v2.19.0 | Low | 10/20/2025 |
| v2.18.0 | ## What's Changed * add support for streaming by @AngeloGiacco in https://github.com/elevenlabs/elevenlabs-python/pull/641 * :herb: Fern Regeneration -- October 14, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/645 * Adds support for Music API inpainting and Agent Workflows **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.17.0...v2.18.0 | Low | 10/14/2025 |
| v2.17.0 | ## What's Changed * Fix url generation by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/631 * :herb: Fern Regeneration -- October 6, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/634 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.16.0...v2.17.0 | Low | 10/9/2025 |
| v2.16.0 | ## What's Changed * :herb: Fern Regeneration -- September 18, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/628 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.15.1...v2.16.0 | Low | 9/18/2025 |
| v2.15.1 | ## What's Changed * Fix issue with conversation when no auth is required by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/620 * Add asyncio event loop by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/616 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.15.0...v2.15.1 | Low | 9/18/2025 |
| v2.15.0 | ## What's Changed * :herb: Fern Regeneration -- September 8, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/622 Adds new Text to Voice Remix endpoint. Fixes Pydantic issues. **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.14.0...v2.15.0 | Low | 9/8/2025 |
| v2.14.0 | ## What's Changed * :herb: Fern Regeneration -- September 4, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/621 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.13.0...v2.14.0 | Low | 9/4/2025 |
| v2.13.0 | ## What's Changed * :herb: Fern Regeneration -- August 29, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/617 Add support for SFX v2 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.12.1...v2.13.0 | Low | 8/29/2025 |
| v2.12.1 | ## What's Changed * :herb: Fern Regeneration -- August 25, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/615 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.12.0...v2.12.1 | Low | 8/25/2025 |
| v2.12.0 | ## What's Changed * Update fernignore by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/613 * :herb: Fern Regeneration -- August 22, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/614 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.11.0...v2.12.0 | Low | 8/22/2025 |
| v2.11.0 | ## What's Changed * [convai] async conv by @AngeloGiacco in https://github.com/elevenlabs/elevenlabs-python/pull/608 * :herb: Fern Regeneration -- August 20, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/610 Adds new `elevenlabs.music.compose_detailed` method. **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.10.0...v2.11.0 | Low | 8/20/2025 |
| v2.10.0 | ## What's Changed * :herb: Fern Regeneration -- August 18, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/609 * Music API release **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.9.2...v2.10.0 | Low | 8/18/2025 |
| v2.9.2 | ## What's Changed * [convai] update llms by @AngeloGiacco in https://github.com/elevenlabs/elevenlabs-python/pull/606 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.9.1...v2.9.2 | Low | 8/9/2025 |
| v2.9.1 | ## What's Changed * :herb: Fern Regeneration -- August 5, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/600 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.9.0...v2.9.1 | Low | 8/5/2025 |
| v2.9.0 | ## What's Changed * :herb: Fern Regeneration -- August 5, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/599 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.8.2...v2.9.0 | Low | 8/5/2025 |
| v2.8.2 | ## What's Changed * add client initiation data to python sdk by @AngeloGiacco in https://github.com/elevenlabs/elevenlabs-python/pull/598 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.8.1...v2.8.2 | Low | 8/4/2025 |
| v2.8.1 | ## What's Changed * feat: add callback for session end in Conversation class by @8thgencore in https://github.com/elevenlabs/elevenlabs-python/pull/578 * Update default timeout and bump version by @PaulAsjes in https://github.com/elevenlabs/elevenlabs-python/pull/596 ## New Contributors * @8thgencore made their first contribution in https://github.com/elevenlabs/elevenlabs-python/pull/578 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.8.0...v2.8.1 | Low | 7/25/2025 |
| v2.8.0 | ## What's Changed * update query params for sdk recording by @AngeloGiacco in https://github.com/elevenlabs/elevenlabs-python/pull/589 * :herb: Fern Regeneration -- July 17, 2025 by @fern-api[bot] in https://github.com/elevenlabs/elevenlabs-python/pull/593 **Full Changelog**: https://github.com/elevenlabs/elevenlabs-python/compare/v2.7.1...v2.8.0 | Low | 7/21/2025 |
