Spaces:
Build error
Build error
| from .models import ( | |
| TTS_ENGINES, TTS_VOICE_CONVERSION, TTS_SML, default_fine_tuned, default_tts_engine, | |
| default_engine_settings, default_vc_model, default_voice_detection_model, | |
| loaded_tts, max_custom_model, max_custom_voices, | |
| max_tts_in_memory, max_upload_size, models, os, voices_dir | |
| ) | |
| from .conf import ( | |
| FULL_DOCKER, NATIVE, audiobooks_cli_dir, audiobooks_gradio_dir, | |
| audiobooks_host_dir, debug_mode, default_audio_proc_samplerate, | |
| default_audio_proc_format, default_device, default_gpu_wiki, | |
| default_output_format, device_list, ebook_formats, | |
| ebooks_dir, interface_component_options, interface_concurrency_limit, | |
| interface_host, interface_port, interface_shared_tmp_expire, | |
| max_python_version, min_python_version, models_dir, os, | |
| output_formats, platform, prog_version, python_env_dir, | |
| requirements_file, tmp_dir, tmp_expire, tts_dir, voice_formats, | |
| voices_dir, default_output_split, default_output_split_hours | |
| ) | |
| from .lang import ( | |
| abbreviations_mapping, chapter_word_mapping, default_language_code, | |
| roman_numbers_tuples, emojis_list, install_info, language_mapping, | |
| language_math_phonemes, language_clock, language_tts, os, punctuation_list, | |
| punctuation_list_set, punctuation_split_hard, punctuation_split_hard_set, | |
| punctuation_split_soft, punctuation_split_soft_set, punctuation_switch, | |
| specialchars_mapping, specialchars_remove, year_to_decades_languages | |
| ) | |
| __all__ = [ | |
| # from models | |
| "TTS_ENGINES", "TTS_VOICE_CONVERSION", "TTS_SML", "default_fine_tuned", "default_tts_engine", | |
| "default_engine_settings", "default_vc_model", "default_voice_detection_model", | |
| "loaded_tts", "max_custom_model", | |
| "max_custom_voices", "max_tts_in_memory", "max_upload_size", | |
| "models", "os", "voices_dir", | |
| # from conf | |
| "FULL_DOCKER", "NATIVE", "audiobooks_cli_dir", "audiobooks_gradio_dir", | |
| "audiobooks_host_dir", "debug_mode", "default_audio_proc_samplerate", | |
| "default_audio_proc_format", "default_device", "default_gpu_wiki", | |
| "default_output_format", "device_list", "ebook_formats", "ebooks_dir", | |
| "interface_component_options", "interface_concurrency_limit", | |
| "interface_host", "interface_port", "interface_shared_tmp_expire", | |
| "max_python_version", "min_python_version", "models_dir", "os", | |
| "output_formats", "platform", "prog_version", "python_env_dir", | |
| "requirements_file", "tmp_dir", "tmp_expire", "tts_dir", | |
| "voice_formats", "voices_dir", "default_output_split", "default_output_split_hours", | |
| # from lang | |
| "abbreviations_mapping", "chapter_word_mapping", "default_language_code", | |
| "roman_numbers_tuples", "emojis_list", "install_info", "language_mapping", | |
| "language_math_phonemes", "language_clock", "language_tts", "os", "punctuation_list", | |
| "punctuation_list_set", "punctuation_split_hard", "punctuation_split_hard_set", | |
| "punctuation_split_soft", "punctuation_split_soft_set", "punctuation_switch", | |
| "specialchars_mapping", "specialchars_remove", "year_to_decades_languages" | |
| ] | |