File size: 1,066 Bytes
7a61b58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import enum

from pydantic_settings import BaseSettings

SPEED = 1.0

class StrEnum(str, enum.Enum):
    """Custom implementation of StrEnum for Python versions < 3.11"""
    def __str__(self):
        return str(self.value)

# NOTE: commented out response formats don't work
class ResponseFormat(StrEnum):
    MP3 = "mp3"
    # OPUS = "opus"
    # AAC = "aac"
    FLAC = "flac"
    WAV = "wav"
    # PCM = "pcm"

class Config(BaseSettings):
    log_level: str = "info"  # env: LOG_LEVEL
    model: str = "ai4bharat/indic-parler-tts"  # env: MODEL
    max_models: int = 1  # env: MAX_MODELS
    lazy_load_model: bool = False  # env: LAZY_LOAD_MODEL
    input: str = ("ನಿಮ್ಮ ಇನ್‌ಪುಟ್ ಪಠ್ಯವನ್ನು ಇಲ್ಲಿ ಸೇರಿಸಿ")
    voice: str = (
        "Anu speaks with a high pitch at a normal pace in a clear, close-sounding environment. Her neutral tone is captured with excellent audio quality"  # env: VOICE
    )
    response_format: ResponseFormat = ResponseFormat.MP3  # env: RESPONSE_FORMAT

config = Config()