Spaces:
Running on Zero
Running on Zero
File size: 5,738 Bytes
cdc4405 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | # Copyright (c) 2026 Scenema AI
# https://scenema.ai
# SPDX-License-Identifier: MIT
"""Scenema Audio standalone server.
Thin FastAPI wrapper around the production AudioProcessor.
"""
import asyncio
import base64
import logging
import os
import uuid
from contextlib import asynccontextmanager
from pathlib import Path
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse
from huggingface_hub import hf_hub_download, snapshot_download
import uvicorn
logger = logging.getLogger("scenema-audio")
# Must be set before any torch import
os.environ.setdefault(
"PYTORCH_CUDA_ALLOC_CONF", "expandable_segments:True"
)
from audio_core.processor import AudioProcessor # noqa: E402
from common.handlers.base import ProcessJob # noqa: E402
# ── Model download ──────────────────────────────────────────────
HF_REPO = "ScenemaAI/scenema-audio"
GEMMA_REPO = "google/gemma-3-12b-it"
SEEDVC_REPO = "Plachta/Seed-VC"
BIGVGAN_REPO = "nvidia/bigvgan_v2_22khz_80band_256x"
WHISPER_REPO = "openai/whisper-small"
MODEL_DIR = Path(os.environ.get("MODEL_DIR", "/app/models"))
def _download_models():
"""Download missing model checkpoints from HuggingFace."""
token = os.environ.get("HF_TOKEN")
# Audio transformer (INT8 by default)
audio_ckpt = Path(os.environ.get(
"AUDIO_CKPT",
str(MODEL_DIR / "scenema-audio-transformer-int8.safetensors"),
))
if not audio_ckpt.exists():
logger.info("Downloading audio transformer (INT8, ~4.9 GB)...")
hf_hub_download(
HF_REPO,
"scenema-audio-transformer-int8.safetensors",
local_dir=str(audio_ckpt.parent),
token=token,
)
# Pipeline checkpoint
pipeline_ckpt = Path(os.environ.get(
"PIPELINE_CKPT",
str(MODEL_DIR / "scenema-audio-pipeline.safetensors"),
))
if not pipeline_ckpt.exists():
logger.info("Downloading pipeline checkpoint (~7.1 GB)...")
hf_hub_download(
HF_REPO,
"scenema-audio-pipeline.safetensors",
local_dir=str(pipeline_ckpt.parent),
token=token,
)
# VAE encoder (small, may already be baked)
vae_ckpt = Path(os.environ.get(
"VAE_ENCODER_CKPT",
str(MODEL_DIR / "scenema-audio-vae-encoder.safetensors"),
))
if not vae_ckpt.exists():
logger.info("Downloading VAE encoder (~42 MB)...")
hf_hub_download(
HF_REPO,
"scenema-audio-vae-encoder.safetensors",
local_dir=str(vae_ckpt.parent),
token=token,
)
# Gemma 3 12B IT
gemma_root = Path(os.environ.get("GEMMA_ROOT", str(MODEL_DIR / "gemma-3-12b-it")))
if not gemma_root.exists() or not any(gemma_root.glob("*.safetensors")):
logger.info("Downloading Gemma 3 12B IT (~24 GB, gated model)...")
snapshot_download(
GEMMA_REPO,
local_dir=str(gemma_root),
ignore_patterns=["*.gguf"],
token=token,
)
# SeedVC
seedvc_path = Path(os.environ.get("SEEDVC_PATH", "/app/seed-vc"))
seedvc_cache = seedvc_path / "checkpoints"
if not seedvc_cache.exists() or not any(seedvc_cache.glob("*.pth")):
logger.info("Downloading SeedVC checkpoints (~1.6 GB)...")
hf_cache = seedvc_cache / "hf_cache"
hf_cache.mkdir(parents=True, exist_ok=True)
os.environ["HF_HUB_CACHE"] = str(hf_cache)
hf_hub_download(
SEEDVC_REPO,
"DiT_seed_v2_uvit_whisper_small_wavenet_bigvgan_pruned.pth",
local_dir=str(seedvc_cache),
token=token,
)
hf_hub_download(
SEEDVC_REPO,
"config_dit_mel_seed_uvit_whisper_small_wavenet.yml",
local_dir=str(seedvc_cache),
token=token,
)
snapshot_download(BIGVGAN_REPO, local_dir=str(hf_cache / "bigvgan"))
snapshot_download(WHISPER_REPO, local_dir=str(hf_cache / "whisper-small"))
# ── FastAPI app ─────────────────────────────────────────────────
processor = AudioProcessor()
_semaphore = asyncio.Semaphore(1)
@asynccontextmanager
async def lifespan(app: FastAPI):
MODEL_DIR.mkdir(parents=True, exist_ok=True)
_download_models()
processor.startup()
logger.info("Scenema Audio ready on port %s", os.environ.get("PORT", "8000"))
yield
processor.shutdown()
app = FastAPI(title="Scenema Audio", lifespan=lifespan)
@app.get("/health")
async def health():
return {"status": "ok"}
@app.post("/generate")
async def generate(request: Request):
body = await request.json()
job = ProcessJob(
job_id=str(uuid.uuid4()),
input=body,
)
async with _semaphore:
result = await processor.process(job)
if not result.success:
return JSONResponse(
status_code=500,
content={
"status": "failed",
"error": result.error or "Generation failed",
},
)
output = result.output
audio_b64 = base64.b64encode(output.data).decode() if output.data else None
return {
"status": "succeeded",
"audio": audio_b64,
"content_type": output.content_type or "audio/wav",
"metadata": output.metadata or {},
}
if __name__ == "__main__":
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(name)s %(levelname)s %(message)s",
)
port = int(os.environ.get("PORT", "8000"))
uvicorn.run(app, host="0.0.0.0", port=port)
|