ibcplateformes
Bundle Seed-VC modules directly in repo for ZeroGPU compatibility
1a64668
raw
history blame contribute delete
435 Bytes
"""
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