"""Tiny Army — HF Space, a Gradio Blocks app. Gradio is the host/shell: gr.Blocks → gr.Tabs, mounted on FastAPI via gr.mount_gradio_app, with tab-switching and the page served by Gradio. The tabs differ in how much Gradio UI they use: • Battle / Sprite Animations — each is just an empty `gr.HTML` div that a head- injected ES module (web/tiny.js) fills with our OWN UI: Pixi canvas + the shared, framework-agnostic render core and chrome (auto-battler's spriteScene.js / spritePlayground.js, bundled to web/, styled by web/shell/spriteScene.css). These tabs use NO Gradio widgets — they're custom canvas surfaces inside the Gradio shell. (Sprite Animations previously used gr.Dropdown/gr.Button; those were replaced by the shared playground.) • Barracks — genuine Gradio widgets (gr.Textbox × 2 + gr.Button) wired to a Python diary() fn (stub — to be backed by a local llama.cpp small model). Sprite data is auto-battler's own static manifest + sheets under web/assets. """ import json import asyncio import json as _json import os import pathlib import re import threading import time # Local dev convenience: load a sibling .env (HF_TOKEN, TINY_*_SPACE keys, etc.) so # `python app.py` picks them up the same way the HF Space gets them from secrets. # override=False → if a var is already set in the real environment (as on the # Space, where there is no .env), that value wins. Optional dep, so a missing # install just skips it. try: from dotenv import load_dotenv load_dotenv(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".env")) except ImportError: pass # ZeroGPU requires the spaces shim to be imported before torch. Locally, or on # non-ZeroGPU hardware, this falls back to a no-op decorator. try: import spaces # type: ignore GPU = spaces.GPU except Exception: # pragma: no cover def GPU(*dargs, **dkwargs): # noqa: N802 - mirror spaces.GPU def wrap(fn): return fn if len(dargs) == 1 and callable(dargs[0]) and not dkwargs: return dargs[0] return wrap import gradio as gr import uvicorn from fastapi import FastAPI, Request from fastapi.responses import StreamingResponse, Response from fastapi.staticfiles import StaticFiles import base64 import urllib.request import urllib.error import llm import persona_parse import prompts HERE = os.path.dirname(os.path.abspath(__file__)) WEB = os.path.join(HERE, "web") USE_GRADIO_SERVER = os.environ.get("TINY_GRADIO_SERVER", "").lower() in ("1", "true", "yes") # The Sprite tab's character picker + controls are built entirely by the shared # playground (web/playground.js) from /sprites/characters.json — no Python-side # dropdown/buttons needed anymore. # NOTE: link sidebar.css here (head) rather than via mount's css_paths — Gradio # auto-scopes css_paths/css= selectors with a `.gradio-container .contain` prefix, # which breaks rules that target or .gradio-container itself (our slide + # content-push). A plain is injected unscoped, so the shared file applies # verbatim — same stylesheet the React app uses. # `upgrade-insecure-requests`: behind HF's custom-domain proxy Gradio emits its # theme.css link as http:// (the app doesn't see HTTPS), which the HTTPS page # blocks as mixed content — so the theme font never loads. This CSP upgrades such # same-host http subresources to https in the browser, fixing it deterministically # regardless of proxy headers. # Hide Gradio's tab bar — the sidebar is the sole navigation. Keep it off-screen # at a fixed wide width (NOT display:none): Gradio's tab bar is width-responsive # and DROPS overflowing tabs from the DOM on narrow screens, which would leave the # sidebar unable to find/click them (mobile nav breaks). Off-screen-but-wide keeps # every tab button present so the sidebar can drive navigation on any viewport. HIDE_TABS = ('') # Auto-battler's fonts. FONTS = ('' '' '') # Parchment theme, applied THEME-INDEPENDENTLY: we override Gradio's own colour + # font CSS variables with `!important`, so the app renders identically whether the # OS is in light or DARK mode (Gradio's dark mode turns text white #f3f4f6, which # was unreadable on parchment). No `?__theme=` redirect — that was fragile and hid # dark mode from testing. The vars below are Gradio's theme tokens; overriding them # at the root cascades to every component. PALETTE = ( "--body-background-fill:#f3ebdc;--background-fill-primary:#f3ebdc;" "--background-fill-secondary:#ece2cc;--body-text-color:#141821;" "--body-text-color-subdued:#6d6a5f;--block-background-fill:#fbf6ea;" "--block-label-text-color:#141821;--block-title-text-color:#141821;" "--input-background-fill:#fbf6ea;--input-text-color:#141821;" "--border-color-primary:#cdbf9e;--neutral-200:#ece2cc;" "--button-secondary-background-fill:#ece2cc;--button-secondary-text-color:#141821;" "--link-text-color:#d8271a;" "--font:'Space Grotesk',-apple-system,BlinkMacSystemFont,sans-serif;" "--font-mono:'JetBrains Mono',ui-monospace,Menlo,monospace;" ) # !important on each token so they beat Gradio's light AND dark definitions. PALETTE_IMP = ";".join(p + " !important" for p in PALETTE.rstrip(";").split(";")) + ";" THEME = ('') # `upgrade-insecure-requests` is needed on the HTTPS Space (prevents mixed-content behind HF's # TLS edge) but BREAKS plain-http LAN testing: it forces every asset/manifest/frame URL to https # on a server with no TLS → ERR_SSL_PROTOCOL_ERROR. Only emit it when actually deployed on HF # (SPACE_ID/SPACE_HOST are set there); local `python app.py` over http omits it and just works. _CSP = ('' if (os.environ.get("SPACE_ID") or os.environ.get("SPACE_HOST")) else '') # Mobile zoom is a readability hazard for a full-screen game: pinch-zoom + double-tap zoom drift # the canvas, and focusing a text input auto-zooms on iOS. Lock the viewport (re-asserted, since # Gradio sets its own), keep inputs at 16px (iOS only zooms on <16px focus), kill double-tap via # touch-action, and block iOS gesture (pinch) events. NOZOOM = ( '' '' ) HEAD = (_CSP + NOZOOM + HIDE_TABS + FONTS + THEME + '' '' '' '' '' '' '' '') # The Game stage fills the whole content area (full-screen map), like the other stages — the # `#battle-stage` rules above lift it out of Gradio's flow; this just sets the load-time background. STAGE = "background:#0b0e12" # Shared app-shell sidebar: rendered from the SAME nav.json + sidebar.css + # sidebar.js the React app uses (src/shell/*). Here we just template the IR into # the markup; the CSS styles it and the JS slides/collapses it — proving the # chrome is shareable across React and Gradio from one source. def build_sidebar(nav): # Render from the shared nav IR. An item belongs on the Space when it carries a # `space` field = the Gradio tab label it navigates to (data-target, matched by # sidebar.js against the tab buttons). React-only sandbox items (href but no # `space`) and sections with no space-items are skipped. b = nav.get("brand", {}) # Brand block mirrors the app's .sidebar-title: a big display-font title with a # red dot, plus a small uppercase subtitle. out = ['') out.append('') return "".join(out) SIDEBAR_HTML = build_sidebar(json.load(open(os.path.join(WEB, "shell", "nav.json")))) def diary(unit, traits): """Streaming war-diary via the llama.cpp runtime. A Gradio generator: each yield replaces the output Textbox, so tokens appear live. Falls back to a stub line if the model can't load, so the Barracks tab always works.""" header = f"— Diary of {(unit or 'a nameless soldier').strip()} —\n\n" yield header + "_(summoning the model — the first run downloads it, please wait…)_" try: acc = header first = True for chunk in llm.stream_chat( prompts.DIARY_SYSTEM, prompts.diary_user_prompt(unit, traits), max_tokens=240, temperature=0.9, ): if first: acc = header # drop the loading note once tokens arrive first = False acc += chunk yield acc if first: # produced nothing yield header + "Today I held the line." except llm.LlmUnavailable as e: yield header + f"Today I held the line. _(model unavailable: {e})_" with gr.Blocks(title="Tiny Army") as ui: gr.HTML(SIDEBAR_HTML) with gr.Tabs(): with gr.Tab("Battle") as battle_tab: gr.HTML(f'
') with gr.Tab("Sprite Animations") as sprite_tab: # The shared playground (web/playground.js) builds the whole page — # team picker (a sidebar) + the framed canvas stage + chrome — into this # div. No dark box here: the picker is the sidebar, the canvas is the # stage (framed by CSS), so it mirrors auto-battler's layout. gr.HTML('
') with gr.Tab("Skill Forge"): # Sandbox: the Coding Model (Settings → Coding Model) authors a combat skill # for a chosen hero. Filled by web/skillForgePanel.js. gr.HTML('
') with gr.Tab("Classes"): # Sandbox: the shared Classes playground (web/classesSandbox.js, synced from # auto-battler) — class picker + WASD combat + customize panel. gr.HTML('
') with gr.Tab("Enemies"): # Sandbox: the shared Enemies playground (web/enemiesSandbox.js) — enemy # roster + WASD combat + stats/skill customize panel. gr.HTML('
') with gr.Tab("World Map"): # Sandbox: the shared Map playground (web/mapSandbox.js, synced from auto-battler) # — pill switcher + all six map sub-pages (World Map / Necropolis / Orc Kingdom / # Forgotten Plains / Interiors / Towers), each with Generated/Tilesheet/Reference. gr.HTML('
') # Pixi canvases start hidden (0×0); re-measure them when a tab is shown. battle_tab.select(None, None, None, js="()=>window.tinyResize&&window.tinyResize()") sprite_tab.select(None, None, None, js="()=>window.tinyResize&&window.tinyResize()") with gr.Tab("Barracks"): # In-browser war-diary (web/diaryPanel.js → wllama, llama.cpp WASM). Runs # entirely on the visitor's device — no server inference. gr.HTML('
') with gr.Tab("Personas"): # In-browser persona generator (web/personaPanel.js → wllama). gr.HTML('
') # NOTE: the engine/model picker is injected into Gradio's OWN settings page # (footer "Settings" → ?view=settings) by web/settingsPanel.js — not a tab. # Mount Gradio on FastAPI so we can also serve the JS module + the sprite assets. fastapi_app = gr.Server() if USE_GRADIO_SERVER else FastAPI() # Behind HF's custom-domain proxy Gradio emits its theme.css as http:// # (the app doesn't see HTTPS), and that link is in the HTML *before* our head= # meta — so a meta CSP can't upgrade it in time. Sending the CSP as a response # HEADER governs the whole document regardless of in-page order, so the browser # upgrades the http theme.css (and any other mixed content) to https. @fastapi_app.middleware("http") async def upgrade_insecure(request, call_next): resp = await call_next(request) # ONLY on the HTTPS Space (see the _CSP note above). On a plain-http LAN this header would # force every asset/manifest/favicon to https on a TLS-less server → ERR_SSL_PROTOCOL_ERROR, # so local `python app.py` over http must NOT send it. if os.environ.get("SPACE_ID") or os.environ.get("SPACE_HOST"): resp.headers["Content-Security-Policy"] = "upgrade-insecure-requests" # Our /web modules change on every deploy; without this the browser serves a # stale cached .js (e.g. old token caps) heuristically. no-cache = always # revalidate (cheap 304 via etag when unchanged). Model weights are fetched # from huggingface.co, not here, so this doesn't affect their caching. if request.url.path.startswith("/web/"): resp.headers["Cache-Control"] = "no-cache" return resp fastapi_app.mount("/web", StaticFiles(directory=WEB), name="web") # NOTE: serve sprite assets at /sprites, NOT /assets — Gradio serves its own UI # bundle from /assets, and mounting there shadows it (breaks the whole UI). fastapi_app.mount("/sprites", StaticFiles(directory=os.path.join(WEB, "assets")), name="sprites") # Skill + condition icons for the Classes sandbox (curated subset under web/gw). fastapi_app.mount("/gw", StaticFiles(directory=os.path.join(WEB, "gw")), name="gw") def _sse(event, data): return f"event: {event}\ndata: {_json.dumps(data)}\n\n" # ── Qwen3-TTS Voice Design (DashScope) ─────────────────────────────────────── # Server-side proxy so the DASHSCOPE_API_KEY secret never reaches the browser. # Takes {text, instruct} (instruct = a natural-language voice description, e.g. the # persona's `voice` field) and returns a 24 kHz WAV. NOT local-first — opt-in engine. DASHSCOPE_KEY = os.environ.get("DASHSCOPE_API_KEY", "") # International Model Studio keys (sk-ws-…) use the -intl host; mainland keys use the # plain host. Default to intl (our key); override with DASHSCOPE_BASE if needed. _DASHSCOPE_BASE = os.environ.get("DASHSCOPE_BASE", "https://dashscope-intl.aliyuncs.com") _DASHSCOPE_URL = _DASHSCOPE_BASE + "/api/v1/services/audio/tts/customization" # TINY_TTS_MODE=local → run the OPEN WEIGHTS in-process (your GPU, off the grid; same # origin so no CORS/cert dance — the LeLab pattern). Needs `pip install qwen-tts torch # soundfile`. Lazy-loaded; the Space (cpu-basic) leaves this unset and uses DashScope. TTS_MODE = os.environ.get("TINY_TTS_MODE", "").strip().lower() VOXCPM_SPACE = os.environ.get("TINY_VOXCPM_SPACE", "").strip() # ACE-Step music + sung-vocal generation (local sidecar; see spaces/acestep-zerogpu). NB this is a # MUSIC model — its "vocals" are sung lyrics, not speech; VoxCPM stays the path for dialogue/TTS. ACESTEP_SPACE = os.environ.get("TINY_ACESTEP_SPACE", "").strip() TINY_AYA_SPACE = os.environ.get("TINY_AYA_SPACE", "").strip() MINICPM5_SPACE = os.environ.get("TINY_MINICPM5_SPACE", "").strip() # Coding model (Skill Forge): Mellum2 is a ZeroGPU sidecar (same /generate contract as # Aya); Nemotron-30B is too big to self-host, so it runs via hosted NVIDIA NIM (below). MELLUM_SPACE = os.environ.get("TINY_MELLUM_SPACE", "").strip() # BLS Mini-Code 1.0 (Cohere, 30B MoE): another ZeroGPU sidecar (same /generate contract). # The sidecar suppresses the model's reasoning and streams clean code; see spaces/bls-code-zerogpu. BLS_CODE_SPACE = os.environ.get("TINY_BLS_CODE_SPACE", "").strip() _local_tts = None # VoiceDesign model _local_clone = None # Base model (voice clone) — lazy, only if a clone is requested _local_tts_lock = threading.Lock() def _load(which): import torch from qwen_tts import Qwen3TTSModel mid = os.environ.get( "QWEN_TTS_MODEL" if which == "design" else "QWEN_TTS_CLONE_MODEL", "Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign" if which == "design" else "Qwen/Qwen3-TTS-12Hz-1.7B-Base") dev = "cuda:0" if torch.cuda.is_available() else "cpu" dt = torch.bfloat16 if dev != "cpu" else torch.float32 return Qwen3TTSModel.from_pretrained(mid, device_map=dev, dtype=dt) def _local_voice_design(text, instruct, language="English"): global _local_tts import io, soundfile as sf with _local_tts_lock: # one GPU model can't decode in parallel if _local_tts is None: _local_tts = _load("design") wavs, sr = _local_tts.generate_voice_design( text=text, language=language, instruct=instruct or "A clear, natural voice at a moderate pace.") out = io.BytesIO(); sf.write(out, wavs[0], sr, format="WAV") return out.getvalue() def _local_voice_clone(text, ref_audio_b64, ref_text, language="English"): # Keep the SAME timbre as a previously-created voice by cloning from its audio (the # "Voice Design → Clone" workflow). qwen-tts wants ref_audio as a (numpy, sr) tuple # (a raw base64 string gets mistaken for a file path), so decode the WAV here. global _local_clone import io, soundfile as sf ref_np, ref_sr = sf.read(io.BytesIO(base64.b64decode(ref_audio_b64))) with _local_tts_lock: if _local_clone is None: _local_clone = _load("clone") wavs, sr = _local_clone.generate_voice_clone( text=text, language=language, ref_audio=(ref_np, ref_sr), ref_text=ref_text or "") out = io.BytesIO(); sf.write(out, wavs[0], sr, format="WAV") return out.getvalue() def _dashscope_voice_design(text, instruct): payload = _json.dumps({ "model": "qwen-voice-design", "input": { "action": "create", "voice_prompt": instruct or "A clear, natural voice at a moderate pace.", "preview_text": text, "target_model": "qwen3-tts-vd-realtime-2025-12-16", "preferred_name": "default", }, "parameters": {"sample_rate": 24000, "response_format": "wav"}, }).encode() req = urllib.request.Request(_DASHSCOPE_URL, data=payload, method="POST", headers={ "Content-Type": "application/json", "Authorization": f"Bearer {DASHSCOPE_KEY}", }) try: with urllib.request.urlopen(req, timeout=60) as r: j = _json.loads(r.read().decode()) except urllib.error.HTTPError as e: return None, f"dashscope {e.code}: {e.read().decode()[:200]}" except Exception as e: # noqa: BLE001 return None, f"dashscope error: {e}" b64 = (j.get("output") or {}).get("preview_audio", {}).get("data") if not b64: return None, "no audio in response: " + _json.dumps(j)[:200] return base64.b64decode(b64), None # Voice CLONE on the cloud is a TWO-CALL flow (mirrors the open-weights design→clone): # 1. enroll the reference WAV (qwen-voice-enrollment) → a voice_id # 2. synthesize new words in that timbre (qwen3-tts-vc-…) → an OSS-signed audio URL # Synthesis returns the audio as a URL (not base64), so we fetch the bytes ourselves. _DASHSCOPE_VC_MODEL = os.environ.get("DASHSCOPE_VC_MODEL", "qwen3-tts-vc-2026-01-22") _DASHSCOPE_GEN_URL = _DASHSCOPE_BASE + "/api/v1/services/aigc/multimodal-generation/generation" def _dashscope_post(url, payload): req = urllib.request.Request(url, data=_json.dumps(payload).encode(), method="POST", headers={ "Content-Type": "application/json", "Authorization": f"Bearer {DASHSCOPE_KEY}", }) with urllib.request.urlopen(req, timeout=90) as r: return _json.loads(r.read().decode()) def _dashscope_voice_clone(text, ref_audio_b64, ref_text): try: enroll = _dashscope_post(_DASHSCOPE_URL, { "model": "qwen-voice-enrollment", "input": { "action": "create", "target_model": _DASHSCOPE_VC_MODEL, "preferred_name": "tinyarmy", "audio": {"data": "data:audio/wav;base64," + ref_audio_b64}, }, }) voice_id = (enroll.get("output") or {}).get("voice") if not voice_id: return None, "no voice_id from enrollment: " + _json.dumps(enroll)[:200] gen = _dashscope_post(_DASHSCOPE_GEN_URL, { "model": _DASHSCOPE_VC_MODEL, "input": {"text": text, "voice": voice_id}, }) except urllib.error.HTTPError as e: return None, f"dashscope clone {e.code}: {e.read().decode()[:200]}" except Exception as e: # noqa: BLE001 return None, f"dashscope clone error: {e}" url = ((gen.get("output") or {}).get("audio") or {}).get("url") if not url: return None, "no audio url in response: " + _json.dumps(gen)[:200] try: with urllib.request.urlopen(url, timeout=90) as r: return r.read(), None except Exception as e: # noqa: BLE001 return None, f"dashscope clone fetch error: {e}" @fastapi_app.post("/qwen-tts") async def qwen_tts(request: Request): body = await request.json() text = (body.get("text") or "").strip() instruct = (body.get("instruct") or "").strip() language = body.get("language") or "English" ref_audio = body.get("ref_audio") # base64 WAV → clone (keep timbre, new words) ref_text = body.get("ref_text") or "" if not text: return Response("text required", status_code=400) if TTS_MODE == "local": # in-process open weights (dev) try: if ref_audio: wav = await asyncio.to_thread(_local_voice_clone, text, ref_audio, ref_text, language) else: wav = await asyncio.to_thread(_local_voice_design, text, instruct, language) except Exception as e: # noqa: BLE001 — surface a clear setup hint return Response(f"local TTS error (pip install qwen-tts torch soundfile?): {e}", status_code=500) return Response(wav, media_type="audio/wav", headers={"Cache-Control": "no-store"}) if not DASHSCOPE_KEY: return Response("DASHSCOPE_API_KEY not set (or run with TINY_TTS_MODE=local)", status_code=503) if ref_audio: # clone the prior voice's timbre (enroll → synthesize) wav, err = await asyncio.to_thread(_dashscope_voice_clone, text, ref_audio, ref_text) else: wav, err = await asyncio.to_thread(_dashscope_voice_design, text, instruct) if err: return Response(err, status_code=502) return Response(wav, media_type="audio/wav", headers={"Cache-Control": "no-store"}) def _voxcpm_predict(api_name, *args): from gradio_client import Client client = Client(VOXCPM_SPACE, token=HF_TOKEN or None) last_err = None for attempt in range(3): try: return client.predict(*args, api_name=api_name) except Exception as e: # noqa: BLE001 last_err = e msg = str(e).lower() if attempt == 2 or not any(s in msg for s in ("accelerator", "queue", "gpu", "timeout", "temporarily")): raise time.sleep(1.5 * (attempt + 1)) raise last_err def _voxcpm_tts(text, instruct): result = _voxcpm_predict( "/synthesize", text, instruct or "A clear, natural voice at a moderate pace.", ) path = result[0] if isinstance(result, (tuple, list)) else result with open(os.fspath(path), "rb") as f: return f.read() def _voxcpm_clone(text, ref_audio_b64, ref_text, instruct): result = _voxcpm_predict( "/clone", text, ref_audio_b64, ref_text or "", instruct or "", ) path = result[0] if isinstance(result, (tuple, list)) else result with open(os.fspath(path), "rb") as f: return f.read() def _acestep_generate(prompt, lyrics, duration, steps, guidance, seed): """Call the ACE-Step sidecar's /generate and return the rendered WAV bytes. Same retry shape as _voxcpm_predict (the sidecar shares one GPU pipeline, so transient queue/GPU hiccups retry).""" from gradio_client import Client client = Client(ACESTEP_SPACE, token=HF_TOKEN or None) last_err = None for attempt in range(3): try: result = client.predict( prompt or "", lyrics or "", float(duration or 30.0), int(steps or 60), float(guidance if guidance is not None else 15.0), int(seed if seed is not None else -1), api_name="/generate", ) path = result[0] if isinstance(result, (tuple, list)) else result with open(os.fspath(path), "rb") as f: return f.read() except Exception as e: # noqa: BLE001 last_err = e msg = str(e).lower() if attempt == 2 or not any(s in msg for s in ("accelerator", "queue", "gpu", "timeout", "temporarily")): raise time.sleep(1.5 * (attempt + 1)) raise last_err def _tiny_aya_generate(system, user, max_tokens, temperature): from gradio_client import Client client = Client(TINY_AYA_SPACE, token=HF_TOKEN or None) result = client.predict( system or "", user or "", int(max_tokens or 400), float(temperature if temperature is not None else 0.8), api_name="/generate", ) return str(result or "") def _space_text_generate(space, system, user, max_tokens, temperature, *extra): from gradio_client import Client client = Client(space, token=HF_TOKEN or None) result = client.predict( system or "", user or "", int(max_tokens or 400), float(temperature if temperature is not None else 0.8), *extra, # optional trailing inputs (e.g. BLS sidecar's `think` flag) api_name="/generate", ) return str(result or "") def _space_text_stream(space, system, user, max_tokens, temperature, *extra): from gradio_client import Client client = Client(space, token=HF_TOKEN or None) try: job = client.submit( system or "", user or "", int(max_tokens or 400), float(temperature if temperature is not None else 0.8), *extra, # optional trailing inputs (e.g. BLS sidecar's `think` flag) api_name="/generate_stream", ) prev = "" for update in job: text = update[0] if isinstance(update, (tuple, list)) else update text = str(text or "") if len(text) > len(prev): yield text[len(prev):] prev = text except Exception: text = _space_text_generate(space, system, user, max_tokens, temperature, *extra) if text: yield text def _tiny_aya_stream(system, user, max_tokens, temperature): yield from _space_text_stream(TINY_AYA_SPACE, system, user, max_tokens, temperature) def _minicpm5_stream(system, user, max_tokens, temperature): yield from _space_text_stream(MINICPM5_SPACE, system, user, max_tokens, temperature) def _mellum_stream(system, user, max_tokens, temperature): yield from _space_text_stream(MELLUM_SPACE, system, user, max_tokens, temperature) def _nim_text_stream(system, user, max_tokens, temperature, model=None, think=False): """Stream from NVIDIA NIM's OpenAI-compatible chat endpoint (hosted Nemotron). Same nvapi-… key as the portrait NIM. think=False sets reasoning_budget=0 to keep the coding output clean (Nemotron defaults thinking ON); think=True lets it reason and surfaces the reasoning_content wrapped in ahead of the answer, so the caller can show it in a debug panel (same convention as the persona models).""" model = model or _NIM_NEMOTRON_MODEL # defined later in the file; resolve at call time messages = [] if system and system.strip(): messages.append({"role": "system", "content": system.strip()}) messages.append({"role": "user", "content": (user or "").strip()}) payload = { "model": model, "messages": messages, "max_tokens": int(max_tokens or 512), "temperature": float(temperature if temperature is not None else 0.6), "top_p": 0.95, "stream": True, } if not think: payload["reasoning_budget"] = 0 # omit entirely to let Nemotron reason body = _json.dumps(payload).encode() req = urllib.request.Request(_NIM_TEXT_URL, data=body, method="POST", headers={ "Authorization": f"Bearer {NIM_KEY}", "Content-Type": "application/json", "Accept": "text/event-stream", }) think_open = False with urllib.request.urlopen(req, timeout=120) as resp: for raw in resp: line = raw.decode("utf-8").strip() if not line.startswith("data:"): continue data = line[5:].strip() if data == "[DONE]": break try: delta = _json.loads(data)["choices"][0]["delta"] except Exception: # noqa: BLE001 continue reasoning = delta.get("reasoning_content") if think else None content = delta.get("content") if reasoning: if not think_open: yield "" think_open = True yield reasoning if content: if think_open: yield "\n" think_open = False yield content if think_open: yield "\n" def _mellum_stream_with_fallback(system, user, max_tokens, temperature): """Mellum2 ZeroGPU sidecar, falling back to Nemotron (NVIDIA NIM) when the sidecar is unavailable (asleep / GPU quota / error) BEFORE any token streams. Once Mellum2 has emitted output we can't restart cleanly, so a later failure just propagates.""" emitted = False try: if not MELLUM_SPACE: raise llm.LlmUnavailable("TINY_MELLUM_SPACE not set") for chunk in _mellum_stream(system, user, max_tokens, temperature): emitted = True yield chunk except Exception: # noqa: BLE001 if emitted or not NIM_KEY: raise yield from _nim_text_stream(system, user, max_tokens, temperature) def _bls_code_stream(system, user, max_tokens, temperature, think=False): # `think` is the BLS sidecar's optional 5th input; passed through _space_text_stream's *extra. yield from _space_text_stream(BLS_CODE_SPACE, system, user, max_tokens, temperature, bool(think)) def _bls_code_stream_with_fallback(system, user, max_tokens, temperature, think=False): """BLS Mini-Code ZeroGPU sidecar, falling back to Nemotron (NVIDIA NIM) if the sidecar is unavailable BEFORE any token streams (same constraint as Mellum2: can't switch mid-stream).""" emitted = False try: if not BLS_CODE_SPACE: raise llm.LlmUnavailable("TINY_BLS_CODE_SPACE not set") for chunk in _bls_code_stream(system, user, max_tokens, temperature, think): emitted = True yield chunk except Exception: # noqa: BLE001 if emitted or not NIM_KEY: raise yield from _nim_text_stream(system, user, max_tokens, temperature, think=think) @fastapi_app.post("/voxcpm-tts") async def voxcpm_tts(request: Request): body = await request.json() text = (body.get("text") or "").strip() instruct = (body.get("instruct") or "").strip() if not text: return Response("text required", status_code=400) if not VOXCPM_SPACE: return Response("TINY_VOXCPM_SPACE not set", status_code=503) try: wav = await asyncio.to_thread(_voxcpm_tts, text, instruct) except Exception as e: # noqa: BLE001 return Response(f"VoxCPM error: {e}", status_code=502) return Response(wav, media_type="audio/wav", headers={"Cache-Control": "no-store"}) @fastapi_app.post("/voxcpm-clone") async def voxcpm_clone(request: Request): body = await request.json() text = (body.get("text") or "").strip() ref_audio = body.get("ref_audio") or "" ref_text = body.get("ref_text") or "" instruct = (body.get("instruct") or "").strip() if not text: return Response("text required", status_code=400) if not ref_audio: return Response("ref_audio required", status_code=400) if not VOXCPM_SPACE: return Response("TINY_VOXCPM_SPACE not set", status_code=503) try: wav = await asyncio.to_thread(_voxcpm_clone, text, ref_audio, ref_text, instruct) except Exception as e: # noqa: BLE001 return Response(f"VoxCPM clone error: {e}", status_code=502) return Response(wav, media_type="audio/wav", headers={"Cache-Control": "no-store"}) @fastapi_app.post("/api/music") async def api_music(request: Request): """Generate music (and optional sung vocals) with the ACE-Step sidecar. Returns a WAV. Body: {prompt, lyrics?, duration?, steps?, guidance?, seed?}. prompt = tags/style; lyrics blank or "[inst]" = instrumental.""" body = await request.json() prompt = (body.get("prompt") or "").strip() if not prompt: return Response("prompt required", status_code=400) if not ACESTEP_SPACE: return Response("TINY_ACESTEP_SPACE not set", status_code=503) lyrics = body.get("lyrics") or "" duration = body.get("duration", 30.0) steps = body.get("steps", 60) guidance = body.get("guidance", 15.0) seed = body.get("seed", -1) try: wav = await asyncio.to_thread(_acestep_generate, prompt, lyrics, duration, steps, guidance, seed) except Exception as e: # noqa: BLE001 return Response(f"ACE-Step error: {e}", status_code=502) return Response(wav, media_type="audio/wav", headers={"Cache-Control": "no-store"}) # ── Durable media store (portraits / voices / skill art / chat audio) ───────── # The client caches these blobs in browser IndexedDB, but IndexedDB is blocked/evicted when the # Space runs inside HuggingFace's cross-origin