File size: 12,785 Bytes
9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 513ea7b 9dad6a7 | 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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | from __future__ import annotations
from collections.abc import Callable
from pathlib import Path
from typing import Any
import gradio as gr
import httpx
from fastapi import HTTPException
from fastapi.responses import FileResponse
from fastapi.staticfiles import StaticFiles
from pydantic import BaseModel, ConfigDict, Field
from starlette.responses import StreamingResponse
from .backends.image import (
DemoImageBackend,
FluxImageBackend,
HfInferenceImageBackend,
ModalImageBackend,
ZeroGpuImageBackend,
)
from .backends.music import ModalMusicBackend, NoMusicBackend
from .backends.text import (
DemoTextBackend,
HfInferenceTextBackend,
LlamaCppTextBackend,
ModalTextBackend,
TransformersTextBackend,
)
from .config import AppConfig
from .orchestrator import ForestOrchestrator, build_guided_situation
from .schema import ForestStyle, IntakeQuestion, IntakeTurn, StreamEvent
from .trace import TraceRecorder
class ForestRequest(BaseModel):
model_config = ConfigDict(extra="forbid", str_strip_whitespace=True)
name: str = Field(min_length=1, max_length=80)
situation: str = Field(min_length=1, max_length=1200)
seed: int | None = Field(default=None, ge=0, le=2_147_483_647)
style: ForestStyle | None = None
intake: list[IntakeTurn] = Field(default_factory=list, max_length=5)
class IntakeNextRequest(BaseModel):
model_config = ConfigDict(extra="forbid", str_strip_whitespace=True)
name: str = Field(min_length=1, max_length=80)
situation: str = Field(min_length=1, max_length=1200)
history: list[IntakeTurn] = Field(default_factory=list, max_length=5)
seed: int | None = Field(default=None, ge=0, le=2_147_483_647)
def build_orchestrator(
config: AppConfig,
*,
gpu_image_generator: Callable[[str, int, str], str] | None = None,
gpu_text_generator: Callable[[list[dict[str, str]], dict[str, object]], str] | None = None,
) -> ForestOrchestrator:
if config.text_backend == "llama_cpp":
text_backend = LlamaCppTextBackend(
base_url=config.llama_base_url,
model=config.llama_model,
)
elif config.text_backend == "hf_inference":
text_backend = HfInferenceTextBackend(model=config.hf_text_model)
elif config.text_backend == "transformers":
if gpu_text_generator is None:
raise ValueError("transformers text backend requires a GPU text generator")
text_backend = TransformersTextBackend(
model=config.transformers_text_model,
generator=gpu_text_generator,
)
elif config.text_backend == "modal":
assert config.modal_text_endpoint is not None
assert config.modal_signing_key is not None
text_backend = ModalTextBackend(
endpoint=config.modal_text_endpoint,
signing_key=config.modal_signing_key.get_secret_value(),
)
else:
text_backend = DemoTextBackend()
if config.image_backend == "modal":
assert config.modal_image_endpoint is not None
assert config.modal_signing_key is not None
image_backend = ModalImageBackend(
endpoint=config.modal_image_endpoint,
signing_key=config.modal_signing_key.get_secret_value(),
fallback=HfInferenceImageBackend(model=config.hf_image_model),
)
elif config.image_backend == "zerogpu":
if gpu_image_generator is None:
raise ValueError("zerogpu image backend requires a GPU image generator")
image_backend = ZeroGpuImageBackend(
gpu_image_generator,
fallback=HfInferenceImageBackend(model=config.hf_image_model),
)
elif config.image_backend == "hf_inference":
image_backend = HfInferenceImageBackend(model=config.hf_image_model)
elif config.image_backend == "flux":
image_backend = FluxImageBackend(
model_id=config.flux_model_id,
lora_id=config.flux_lora_id,
local_files_only=config.local_files_only,
)
else:
image_backend = DemoImageBackend()
if config.music_backend == "modal":
assert config.modal_music_endpoint is not None
assert config.modal_signing_key is not None
music_backend = ModalMusicBackend(
endpoint=config.modal_music_endpoint,
signing_key=config.modal_signing_key.get_secret_value(),
)
else:
music_backend = NoMusicBackend()
trace_recorder = TraceRecorder(config.trace_path) if config.trace_path else None
return ForestOrchestrator(
text_backend=text_backend,
image_backend=image_backend,
music_backend=music_backend,
trace_recorder=trace_recorder,
)
def create_app(
*,
config: AppConfig | None = None,
orchestrator: Any | None = None,
frontend_dir: str | Path | None = None,
gpu_image_generator: Callable[[str, int, str], str] | None = None,
gpu_text_generator: Callable[[list[dict[str, str]], dict[str, object]], str] | None = None,
upstream_client: httpx.Client | None = None,
) -> gr.Server:
runtime = config or AppConfig.from_env()
forest = None
if runtime.upstream_space_url is None:
forest = orchestrator or build_orchestrator(
runtime,
gpu_image_generator=gpu_image_generator,
gpu_text_generator=gpu_text_generator,
)
proxy = upstream_client
if runtime.upstream_space_url and proxy is None:
proxy = httpx.Client(
timeout=httpx.Timeout(600, connect=30),
follow_redirects=True,
)
frontend = (
Path(frontend_dir)
if frontend_dir is not None
else Path(__file__).resolve().parents[2] / "frontend"
)
app = gr.Server(
title="The Compliment Forest",
description="A progressive path of grounded encouragement.",
docs_url=None,
redoc_url=None,
)
# Browsers will heuristically cache static files for hours when no
# Cache-Control header is present, and HF Spaces does not set one for
# FastAPI-served files. Force revalidation so each Space rebuild is
# immediately visible without a cache wipe on the user's side.
_NO_CACHE = {"Cache-Control": "no-cache, must-revalidate"}
@app.get("/")
def index() -> FileResponse:
return FileResponse(frontend / "index.html", headers=_NO_CACHE)
@app.get("/styles.css")
def styles() -> FileResponse:
return FileResponse(
frontend / "styles.css",
media_type="text/css",
headers=_NO_CACHE,
)
@app.get("/app.js")
def javascript() -> FileResponse:
return FileResponse(
frontend / "app.js",
media_type="text/javascript",
headers=_NO_CACHE,
)
assets = frontend / "assets"
if assets.exists():
app.mount("/assets", StaticFiles(directory=assets), name="assets")
@app.get("/health")
def health() -> dict[str, object]:
if runtime.upstream_space_url:
return {
"status": "ok",
"runtime_mode": "upstream_proxy",
"upstream_space_url": runtime.upstream_space_url,
"off_grid": False,
"fresh_images": True,
"default_style": runtime.default_style,
"model_parameter_budget_billions": 25,
"phase1_model_parameter_budget_billions": 18,
}
hosted = bool(
{"hf_inference", "modal", "zerogpu", "transformers"}
& {runtime.text_backend, runtime.image_backend}
)
runtime_text_model = {
"demo": "demo",
"hf_inference": runtime.hf_text_model,
"llama_cpp": runtime.llama_model,
"transformers": runtime.transformers_text_model,
"modal": "openbmb/MiniCPM4.1-8B (Modal)",
}[runtime.text_backend]
phase1_budget = (
18 if runtime.text_backend == "llama_cpp" and runtime.image_backend == "flux" else None
)
active_budget = phase1_budget
uses_minicpm = (
runtime.text_backend == "modal"
or (
runtime.text_backend == "transformers"
and runtime.transformers_text_model.endswith("MiniCPM4.1-8B")
)
or (
runtime.text_backend == "hf_inference"
and runtime.hf_text_model.endswith("MiniCPM4.1-8B")
)
)
if uses_minicpm:
active_budget = 25
return {
"status": "ok",
"text_backend": runtime.text_backend,
"runtime_text_model": runtime_text_model,
"image_backend": runtime.image_backend,
"music_backend": runtime.music_backend,
"off_grid": not hosted,
"fresh_images": runtime.image_backend != "demo",
"default_style": runtime.default_style,
"model_parameter_budget_billions": active_budget,
"phase1_model_parameter_budget_billions": 18,
}
@app.post("/api/intake/next")
def next_intake(request: IntakeNextRequest) -> IntakeQuestion:
if runtime.upstream_space_url:
assert proxy is not None
try:
response = proxy.post(
f"{runtime.upstream_space_url}/api/intake/next",
json=request.model_dump(mode="json"),
)
response.raise_for_status()
return IntakeQuestion.model_validate(response.json())
except (httpx.HTTPError, ValueError) as error:
raise HTTPException(
status_code=502,
detail=f"The forest could not reach its generation service: {error}",
) from error
from .safety import guard_input
assert forest is not None
guard = guard_input(request.name, request.situation)
if not guard.allowed:
raise HTTPException(status_code=400, detail=guard.message)
if len(request.history) >= 5:
raise HTTPException(status_code=400, detail="intake already complete")
seed = (request.seed if request.seed is not None else runtime.default_seed) + len(
request.history
)
try:
return forest.next_intake_question(
request.name,
request.situation,
request.history,
seed=seed,
)
except ValueError as error:
raise HTTPException(
status_code=502,
detail=f"The forest could not produce a question: {error}",
) from error
@app.post("/api/forest")
def generate_forest(request: ForestRequest) -> StreamingResponse:
if runtime.upstream_space_url:
def proxy_stream():
assert proxy is not None
try:
with proxy.stream(
"POST",
f"{runtime.upstream_space_url}/api/forest",
json=request.model_dump(mode="json"),
) as response:
response.raise_for_status()
yield from response.iter_bytes()
except httpx.HTTPError as error:
yield (
StreamEvent(
type="error",
message=(
"The forest could not reach its generation service: "
f"{error}"
),
).model_dump_json()
+ "\n"
)
return StreamingResponse(proxy_stream(), media_type="application/x-ndjson")
def stream():
assert forest is not None
seed = request.seed if request.seed is not None else runtime.default_seed
style = request.style or runtime.default_style
model_situation = build_guided_situation(request.situation, request.intake)
try:
for event in forest.generate(
request.name,
request.situation,
seed,
style,
model_situation=model_situation,
):
yield event.model_dump_json() + "\n"
except Exception as error:
yield StreamEvent(
type="error",
message=f"The forest could not grow: {error}",
).model_dump_json() + "\n"
return StreamingResponse(stream(), media_type="application/x-ndjson")
return app
|