File size: 391 Bytes
754f043
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""RVC Voice Conversion Library.

This is a minimal rewrite of the ultimate-rvc library for voice conversion.
"""
from __future__ import annotations

from pathlib import Path

# Base directory for RVC resources
BASE_DIR = Path(__file__).parent.parent.parent

# Models directory
MODELS_DIR = BASE_DIR / "rvc_models"

# Configs directory (for model configs)
CONFIGS_DIR = BASE_DIR / "configs"