Spaces:
Build error
Build error
File size: 498 Bytes
48ae3bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# config.py
# Model Identifiers
# Note: Using ZeroScope v2 576w as a high-quality open-source proxy model.
# The original Sora 2 is proprietary and capable of longer generations (2 min).
MODEL_ID_T2V = "cerspense/zeroscope_v2_576w"
# Constraints (Must be realistic for free spaces)
MAX_DURATION_SECONDS = 4 # Maximum video duration in seconds (4s is a realistic limit for ZeroScope on free GPU)
# Placeholder paths
ASSETS_DIR = "assets"
DEFAULT_IMAGE_PATH = f"{ASSETS_DIR}/placeholder_image.png" |