Views
No views yet
drbaph/s2-pro-fp8 (FP8 weight-only quant of fishaudio/s2-pro, ~12 GB VRAM vs ~24 GB bf16).VOCENCE_S2_MODEL_PATH=fishaudio/s2-pro for the original (gated; needs HF token).sgl-omni fails at runtime.chute_config.yml, miner.py, and s2pro_tts.yaml for deployment.sgl-venv site-packages with a stub numpy so vocence_chute behaves like the container (numpy not only from default site-packages). Run from vocence_s2pro_miner/:python3 scripts/test_chutes_sandbox_local.pyy prompts (build + deploy)chutes Python package uses input() in two places you care about:chutes build (chutes/entrypoint/build.py): after listing build-context files, it may ask “show the rest? (y/n)” and always asks “Confirm submitting build context? (y/n)”.printf 'n\ny\n'.printf 'y\n'.chutes deploy (chutes/entrypoint/deploy.py): asks “upload … and deploy …, confirm? (y/n)” before the API call. --accept-fee only sets the accept_fee query param for the deployment fee; it does not skip that prompt.1cd vocence_s2pro_miner
2# Build (many files in repo → use two lines)
3printf 'n\ny\n' | chutes build vocence_chute:chute --wait
4# Deploy
5printf 'y\n' | chutes deploy vocence_chute:chute --accept-feescripts/chutes_release.sh (edit/delete steps as needed).vocence_chute.py)VocenceSandboxImporter only allows imports whose code lives under stdlib, normal site-packages, or your miner.py. The S2 Pro Docker image also uses /app/sgl-venv/.../site-packages and /app/pyextra; those paths are whitelisted. For local simulation, set VOCENCE_EXTRA_IMPORT_ROOTS to colon-separated dirs (see scripts/test_chutes_sandbox_local.py).