Spaces:
Running
Running
""" | |
constants.py | |
This module defines global constants used throughout the project. | |
""" | |
# Standard Library Imports | |
from typing import List | |
# Third-Party Library Imports | |
from src.custom_types import ComparisonType, OptionKey, OptionLabel, TTSProviderName | |
CLIENT_ERROR_CODE = 400 | |
SERVER_ERROR_CODE = 500 | |
# UI constants | |
HUME_AI: TTSProviderName = "Hume AI" | |
ELEVENLABS: TTSProviderName = "ElevenLabs" | |
TTS_PROVIDERS: List[TTSProviderName] = ["Hume AI", "ElevenLabs"] | |
HUME_TO_HUME: ComparisonType = "Hume AI - Hume AI" | |
HUME_TO_ELEVENLABS: ComparisonType = "Hume AI - ElevenLabs" | |
CHARACTER_DESCRIPTION_MIN_LENGTH: int = 20 | |
CHARACTER_DESCRIPTION_MAX_LENGTH: int = 1000 | |
TEXT_MIN_LENGTH: int = 100 | |
TEXT_MAX_LENGTH: int = 1000 | |
OPTION_A_KEY: OptionKey = "option_a" | |
OPTION_B_KEY: OptionKey = "option_b" | |
OPTION_A_LABEL: OptionLabel = "Option A" | |
OPTION_B_LABEL: OptionLabel = "Option B" | |
TROPHY_EMOJI: str = "π" | |
SELECT_OPTION_A: str = "Select Option A" | |
SELECT_OPTION_B: str = "Select Option B" | |
# A collection of pre-defined character descriptions categorized by theme, used to provide users with | |
# inspiration for generating creative, expressive text inputs for TTS, and generating novel voices. | |
SAMPLE_CHARACTER_DESCRIPTIONS: dict = { | |
"π§ Meditation Guru": ( | |
"The speaker is a mindfulness instructor with a gentle, soothing voice that flows at a slow, measured pace " | |
"with natural pauses. Their consistently calm, low-pitched tone has minimal variation, creating a peaceful " | |
"auditory experience." | |
), | |
"π¬ Noir Detective": ( | |
"A film portrayal of a 1940s private investigator narrating with a low, gravelly voice and deliberate pacing. " | |
"Speaks with a cynical, world-weary tone that drops lower when delivering key observations." | |
), | |
"π―οΈ Victorian Ghost Storyteller": ( | |
"The speaker is a Victorian-era raconteur speaking with a refined British accent and formal, precise diction. " | |
"Voice modulates between hushed, tense whispers and dramatic declarations when describing eerie occurrences." | |
), | |
"πΏ British Naturalist": ( | |
"Speaker is a wildlife documentarian speaking with a crisp, articulate British accent and clear enunciation. " | |
"Voice alternates between hushed, excited whispers and enthusiastic explanations filled with genuine wonder." | |
), | |
"π Texan Storyteller": ( | |
"The speaker is a woman from rural Texas speaking with a warm voice and distinctive Southern drawl featuring " | |
"elongated vowels. Talks unhurriedly with a musical quality and occasional soft laughter." | |
), | |
"π Surfer Dude": ( | |
"The speaker is a California surfer talking with a casual, slightly nasal voice and laid-back rhythm. Uses " | |
"rising inflections at sentence ends and bursts into spontaneous laughter when excited." | |
), | |
"π Obnoxious Prince": ( | |
"Speaker is a prince of England speaks in a smug and authoritative voice in an obnoxious, proper English " | |
"accent. He is insecure, arrogant, and prone to tantrums." | |
), | |
"π° Medieval Peasant Man": ( | |
"A film portrayal of a medieval peasant speaking with a thick cockney accent and a worn voice, dripping with " | |
"sarcasm and self-effacing humor." | |
), | |
} | |