Spaces:
Running
Running
| """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" | |