""" Setup module: Seed-VC modules are now bundled directly in the repo. No git clone needed. Models are downloaded from HuggingFace on first use. """ import os import sys import logging logger = logging.getLogger(__name__) def setup_seed_vc(): """Setup: ensure checkpoints directory exists.""" os.makedirs("./checkpoints", exist_ok=True) logger.info("Seed-VC setup complete (modules bundled in repo).") return True