Spaces:
Running
Running
File size: 5,568 Bytes
a375dbf c8f7e68 a375dbf c8f7e68 5a007ca a375dbf c8f7e68 a375dbf 681c05f 8047063 5a007ca a375dbf 5a007ca a375dbf 8047063 a375dbf e9bcee8 bc5091e 8047063 e9bcee8 e560bf3 a375dbf e9bcee8 a375dbf e9bcee8 d7356ce e9bcee8 8047063 681c05f a375dbf e560bf3 8047063 e560bf3 a375dbf 63ef86b a375dbf 63ef86b a375dbf 8047063 a375dbf 8047063 a375dbf 8047063 a375dbf 63ef86b a375dbf a6d4367 a375dbf bc5091e a375dbf 8047063 a375dbf e9bcee8 63ef86b a375dbf e9bcee8 a375dbf e9bcee8 63ef86b a375dbf e9bcee8 a375dbf a6d4367 63ef86b a6d4367 a375dbf 8047063 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
"""
elevenlabs_api.py
This file defines the interaction with the ElevenLabs text-to-speech (TTS) API using the ElevenLabs Python SDK.
It includes functionality for API request handling and processing API responses.
Key Features:
- Encapsulates all logic related to the ElevenLabs TTS API.
- Implements retry logic for handling transient API errors.
- Handles received audio and processes it for playback on the web.
- Provides detailed logging for debugging and error tracking.
Classes:
- ElevenLabsConfig: Immutable configuration for interacting with Elevenlabs' TTS API.
- ElevenLabsError: Custom exception for ElevenLabs API-related errors.
Functions:
- text_to_speech_with_elevenlabs: synthesizes speech from text using ElevenLabs' TTS API.
"""
# Standard Library Imports
from dataclasses import dataclass
import logging
import random
from typing import Literal, Optional
# Third-Party Library Imports
from elevenlabs import ElevenLabs
from tenacity import retry, stop_after_attempt, wait_fixed, before_log, after_log
# Local Application Imports
from src.config import logger
from src.utils import validate_env_var, truncate_text
ElevenlabsVoiceId = Literal[
"pNInz6obpgDQGcFmaJgB",
"ErXwobaYiN019PkySvjV",
"21m00Tcm4TlvDq8ikWAM",
"XrExE9yKIg1WjnnlVkGX"
]
@dataclass(frozen=True)
class ElevenLabsConfig:
"""Immutable configuration for interacting with the ElevenLabs TTS API."""
api_key: str = validate_env_var('ELEVENLABS_API_KEY')
model_id: str = 'eleven_multilingual_v2' # ElevenLab's most emotionally expressive model
output_format: str = 'mp3_44100_128' # Output format of the generated audio
voice_ids: list[ElevenlabsVoiceId] = (
'pNInz6obpgDQGcFmaJgB', # Adam
'ErXwobaYiN019PkySvjV', # Antoni
'21m00Tcm4TlvDq8ikWAM', # Rachel
'XrExE9yKIg1WjnnlVkGX', # Matilda
)
def __post_init__(self):
# Validate that required attributes are set
if not self.api_key:
raise ValueError('ElevenLabs API key is not set.')
if not self.model_id:
raise ValueError('ElevenLabs Model ID is not set.')
if not self.output_format:
raise ValueError('ElevenLabs Output Format is not set.')
if not self.voice_ids:
raise ValueError('ElevenLabs Voice IDs are not set.')
@property
def client(self) -> ElevenLabs:
"""
Lazy initialization of the ElevenLabs client.
Returns:
ElevenLabs: Configured client instance.
"""
return ElevenLabs(api_key=self.api_key)
@property
def random_voice_id(self) -> str:
"""
Randomly selects a voice ID from the top default voices, ensuring different voices across calls.
"""
return random.choice(self.voice_ids)
class ElevenLabsError(Exception):
"""Custom exception for errors related to the ElevenLabs TTS API."""
def __init__(self, message: str, original_exception: Optional[Exception] = None):
super().__init__(message)
self.original_exception = original_exception
# Initialize the ElevenLabs client
elevenlabs_config = ElevenLabsConfig()
@retry(
stop=stop_after_attempt(3),
wait=wait_fixed(2),
before=before_log(logger, logging.DEBUG),
after=after_log(logger, logging.DEBUG),
reraise=True
)
def text_to_speech_with_elevenlabs(text: str, voice_id: ElevenlabsVoiceId) -> bytes:
"""
Synthesizes text to speech using the ElevenLabs TTS API.
Args:
text (str): The text to be synthesized to speech.
voice_id (str): The voice ID for Elevenlabs to use when synthesizing speech.
Returns:
bytes: The raw binary audio data for playback.
Raises:
ElevenLabsError: If there is an error communicating with the ElevenLabs API or processing the response.
"""
logger.debug(f'Synthesizing speech from text with ElevenLabs. Text length: {len(text)} characters.')
try:
# Synthesize speech using the ElevenLabs SDK
audio_iterator = elevenlabs_config.client.text_to_speech.convert(
text=text,
voice_id=voice_id,
model_id=elevenlabs_config.model_id,
output_format=elevenlabs_config.output_format,
)
# Ensure the response is an iterator
if not hasattr(audio_iterator, '__iter__') or not hasattr(audio_iterator, '__next__'):
logger.error('Invalid audio iterator response.')
raise ElevenLabsError('Invalid audio iterator received from ElevenLabs API.')
# Combine chunks into a single bytes object
audio = b''.join(chunk for chunk in audio_iterator)
# Validate audio
if not audio:
logger.error('No audio data received from ElevenLabs API.')
raise ElevenLabsError('Empty audio data received from ElevenLabs API.')
logger.info(f'Received ElevenLabs audio ({len(audio)} bytes).')
return audio
except Exception as e:
logger.exception(f'Error synthesizing speech from text with Elevenlabs: {e}')
raise ElevenLabsError(
message=f'Failed to synthesize speech from text with ElevenLabs: {e}',
original_exception=e,
)
def get_random_elevenlabs_voice_id() -> ElevenlabsVoiceId:
"""
Get a random Elevenlabs voice ID.
Voices:
- pNInz6obpgDQGcFmaJgB (Adam)
- ErXwobaYiN019PkySvjV (Antoni)
- 21m00Tcm4TlvDq8ikWAM (Rachel)
- XrExE9yKIg1WjnnlVkGX (Matilda)
"""
return elevenlabs_config.random_voice_id |