from __future__ import annotations from pathlib import Path def audio_root() -> Path: return Path(__file__).resolve().parent def audio_model_dir() -> Path: return audio_root() def audio_tokenizer_dir() -> Path: return audio_root() / "audio_tokenizer" def voices_dir() -> Path: return audio_root() / "Voices"