File size: 333 Bytes
101858b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"