File size: 435 Bytes
2376414
1a64668
 
2376414
 
 
 
 
 
 
 
 
fea49f2
1a64668
 
 
2376414
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
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