File size: 45,664 Bytes
3dbff85 52a5649 daf3545 52a5649 daf3545 52a5649 daf3545 52a5649 3dbff85 602bc83 b604d92 602bc83 3dbff85 f9c55e4 3dbff85 | 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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 | """Riprap web UI β FastAPI + SSE streaming of the Burr FSM trace.
Run: uvicorn web.main:app --reload --port 8000
"""
from __future__ import annotations
import json
import os
import warnings
from pathlib import Path
warnings.filterwarnings("ignore")
from fastapi import FastAPI, Request # noqa: E402
from fastapi.responses import FileResponse, JSONResponse, StreamingResponse # noqa: E402
from fastapi.staticfiles import StaticFiles # noqa: E402
from app import emissions # noqa: E402
from app.context import floodnet # noqa: E402
from app.flood_layers import dep_stormwater, sandy_inundation # noqa: E402
from app.fsm import iter_steps # noqa: E402
from app.stones import DATA_STONES # noqa: E402
from app.stones import capstone as _capstone_stone # noqa: E402
# Map FSM step name -> Stone for the SSE stone_start / stone_done envelope.
# Steps not in this map (geocode, rag_granite_embedding, gliner_extract,
# nta_resolve and friends) don't open a Stone boundary β they're
# orientation / policy infrastructure shared across Stones.
_STEP_TO_STONE: dict[str, str] = {
# Cornerstone β single_address + polygon-aggregated (neighborhood)
"sandy_inundation": "Cornerstone",
"dep_stormwater": "Cornerstone",
"ida_hwm_2021": "Cornerstone",
"prithvi_eo_v2": "Cornerstone",
"microtopo_lidar": "Cornerstone",
"sandy_nta": "Cornerstone",
"dep_extreme_2080_nta": "Cornerstone",
"dep_moderate_2050_nta": "Cornerstone",
"dep_moderate_current_nta": "Cornerstone",
"microtopo_nta": "Cornerstone",
# Keystone (the chip fetch is infrastructure for the LoRA pair, but
# it's logically Keystone-adjacent and we surface it under that
# banner so the trace doesn't show a phantom orphan step).
"mta_entrance_exposure": "Keystone",
"nycha_development_exposure": "Keystone",
"doe_school_exposure": "Keystone",
"doh_hospital_exposure": "Keystone",
"terramind_synthesis": "Keystone",
"eo_chip_fetch": "Keystone",
"terramind_buildings": "Keystone",
# Touchstone
"floodnet": "Touchstone",
"nyc311": "Touchstone",
"nws_obs": "Touchstone",
"noaa_tides": "Touchstone",
"prithvi_eo_live": "Touchstone",
"terramind_lulc": "Touchstone",
"nyc311_nta": "Touchstone",
# Lodestone
"nws_alerts": "Lodestone",
"ttm_forecast": "Lodestone",
"ttm_311_forecast": "Lodestone",
"floodnet_forecast": "Lodestone",
"ttm_battery_surge": "Lodestone",
# Capstone β the reconciler step's name varies between strict and
# legacy paths; both map to Capstone.
"reconcile_granite41": "Capstone",
"mellea_reconcile_address": "Capstone",
"reconcile_neighborhood": "Capstone",
"reconcile_development": "Capstone",
"reconcile_live_now": "Capstone",
}
# Pretty-printed Stone metadata the frontend renders as parent-row labels.
_STONE_META: dict[str, dict] = {
s.NAME: {"name": s.NAME, "tagline": s.TAGLINE,
"description": s.DESCRIPTION}
for s in DATA_STONES
}
_STONE_META[_capstone_stone.NAME] = {
"name": _capstone_stone.NAME,
"tagline": _capstone_stone.TAGLINE,
"description": _capstone_stone.DESCRIPTION,
}
ROOT = Path(__file__).resolve().parent
STATIC = ROOT / "static"
SVELTEKIT_BUILD = ROOT / "sveltekit" / "build"
app = FastAPI(title="Riprap")
app.mount("/static", StaticFiles(directory=STATIC), name="static")
# SvelteKit static build (adapter-static). Serves the new design-system UI
# from /, /q/sample, /q/<query>. The legacy custom-element pages remain at
# /legacy, /single, /compare, /register/* for as long as they're useful.
if SVELTEKIT_BUILD.exists():
app.mount("/_app", StaticFiles(directory=SVELTEKIT_BUILD / "_app"), name="sveltekit_assets")
# Top-level static assets the SvelteKit build emits next to the HTML
# entry points (favicon.svg / favicon.png / robots.txt). These would
# fall through to the SPA fallback and 404 without explicit routes;
# adapter-static expects them under /, not /_app.
def _serve_build_asset(name: str):
p = SVELTEKIT_BUILD / name
if not p.exists():
return JSONResponse({"detail": "Not Found"}, status_code=404)
return FileResponse(p, headers={"Cache-Control": "public, max-age=86400"})
@app.get("/favicon.svg", include_in_schema=False)
def _favicon_svg():
return _serve_build_asset("favicon.svg")
@app.get("/favicon.png", include_in_schema=False)
def _favicon_png():
return _serve_build_asset("favicon.png")
@app.get("/favicon.ico", include_in_schema=False)
def _favicon_ico():
# No .ico in the build, but browsers still probe for it. Redirect-
# by-content to the PNG so the tab gets the dam mark either way.
return _serve_build_asset("favicon.png")
@app.get("/robots.txt", include_in_schema=False)
def _robots():
return _serve_build_asset("robots.txt")
import json as _json # noqa: E402
import geopandas as _gpd # noqa: E402
from fastapi.responses import JSONResponse # noqa: E402
_LAYER_CACHE: dict = {}
def _clip_simplify(gdf, lat: float, lon: float, radius_m: float = 1500,
simplify_ft: float = 8, props_keep=None):
"""Clip a NYC-wide layer to a small bbox around a point and simplify.
Uses shapely's clip_by_rect (much faster than gpd.overlay on dense
polygons) and a pre-bbox-filter via .cx so we never touch geometries
outside the AOI.
"""
import shapely.geometry as sg
pt = _gpd.GeoSeries([sg.Point(lon, lat)], crs="EPSG:4326").to_crs("EPSG:2263")[0]
half = radius_m * 3.281
minx, miny, maxx, maxy = pt.x - half, pt.y - half, pt.x + half, pt.y + half
sub = gdf.cx[minx:maxx, miny:maxy]
if sub.empty:
return {"type": "FeatureCollection", "features": []}
clipped = sub.copy()
clipped["geometry"] = sub.geometry.clip_by_rect(minx, miny, maxx, maxy)
clipped = clipped[~clipped.geometry.is_empty & clipped.geometry.notna()]
if clipped.empty:
return {"type": "FeatureCollection", "features": []}
clipped["geometry"] = clipped.geometry.simplify(simplify_ft, preserve_topology=True)
g = clipped.to_crs("EPSG:4326")
if props_keep is not None:
g = g[[c for c in g.columns if c in props_keep or c == "geometry"]]
else:
g = g[["geometry"]]
return _json.loads(g.to_json())
@app.on_event("startup")
def _warm_caches():
"""Prime slow loads so the first user query doesn't pay the cold-cost penalty."""
print("[startup] warming flood layers...", flush=True)
sandy_inundation.load()
for scen in ["dep_extreme_2080", "dep_moderate_2050", "dep_moderate_current"]:
dep_stormwater.load(scen)
print("[startup] flood layers ready", flush=True)
if os.environ.get("RIPRAP_NYCHA_REGISTERS", "0").lower() in ("1", "true", "yes"):
print("[startup] pre-loading register catalogs...", flush=True)
try:
# NYCHA + DOE schools read from pre-built JSON catalogs at
# data/registers/{nycha,schools}.json β sub-ms per query.
from app.registers._loader import load_register
n_nycha = len(load_register("nycha"))
n_schools = len(load_register("schools"))
print(f"[startup] catalogs ready: nycha={n_nycha} rows, "
f"schools={n_schools} rows", flush=True)
# DOH hospitals has no pre-built catalog (~150 entries; we
# read the GeoJSON directly and sample baked rasters per hit).
from app.registers import doh_hospitals as _r_hospitals
_r_hospitals._load_hospitals()
print("[startup] hospitals geojson loaded", flush=True)
except Exception as _e:
print(f"[startup] register warm failed (non-fatal): {_e}", flush=True)
print("[startup] warming RAG (Granite Embedding 278M + 5 PDFs)...", flush=True)
# RAG warm loads sentence-transformers, which on some HF Space rebuilds
# has hit transformers-lazy-import edge cases (CodeCarbonCallback). The
# Space *must* start even if RAG fails β the FSM still works without
# RAG citations (specialists deliver their own grounded data, and the
# rag step in fsm.py already handles `rag=[]` gracefully). Surface the
# failure loudly in logs but don't kill the app.
try:
from app import rag
rag.warm()
print("[startup] RAG ready", flush=True)
except Exception as e: # noqa: BLE001
print(f"[startup] RAG warm FAILED β continuing without RAG: "
f"{type(e).__name__}: {e}", flush=True)
import traceback
traceback.print_exc()
# Pre-import the heavy EO/ML stacks on the main thread so the
# parallel-fanout workers don't race each other on first
# import (sklearn's "partially initialized module" surfaces as a
# spurious ImportError when terratorch / tsfm_public both pull
# sklearn concurrently from worker threads).
# Warm the Ollama LLM models so the first user query doesn't pay a
# cold-load penalty (~70 s for the 3B planner, ~12 s for the 8B
# reconciler at Q4_K_M). Sets keep_alive to 24 h so they stay
# resident across queries. Both calls use num_ctx that matches the
# production call sites (Mellea's 4096), so Ollama's KV cache is
# pre-allocated at the right size and the first reconcile doesn't
# pay an extra grow-and-reinit cost.
if os.environ.get("RIPRAP_SKIP_LLM_WARM", "").lower() not in ("1", "true", "yes"):
print("[startup] warming Ollama models (granite4.1:3b + 8b)...",
flush=True)
try:
import httpx as _httpx
base = os.environ.get(
"OLLAMA_BASE_URL",
os.environ.get("OLLAMA_HOST", "http://localhost:11434"),
)
if not base.startswith("http"):
base = "http://" + base
keep_alive = os.environ.get("OLLAMA_KEEP_ALIVE", "24h")
num_ctx = int(os.environ.get("RIPRAP_MELLEA_NUM_CTX", "4096"))
for tag in (os.environ.get("RIPRAP_OLLAMA_3B_TAG", "granite4.1:3b"),
os.environ.get("RIPRAP_OLLAMA_8B_TAG", "granite4.1:8b")):
try:
r = _httpx.post(
base.rstrip("/") + "/api/generate",
json={
"model": tag,
"prompt": "hi",
"stream": False,
"keep_alive": keep_alive,
"options": {"num_ctx": num_ctx, "num_predict": 1},
},
timeout=180,
)
if r.status_code == 200:
load_s = r.json().get("load_duration", 0) / 1e9
print(f"[startup] {tag} loaded "
f"(load_duration={load_s:.1f}s, "
f"keep_alive={keep_alive}, num_ctx={num_ctx})",
flush=True)
else:
print(f"[startup] {tag} warm failed "
f"({r.status_code})", flush=True)
except Exception as warm_err:
print(f"[startup] {tag} warm failed: {warm_err}",
flush=True)
except Exception as e:
print(f"[startup] LLM warm skipped: {e}", flush=True)
print("[startup] pre-importing terratorch + tsfm_public + transformers...", flush=True)
try:
import sklearn # noqa: F401 prime sklearn first
import terratorch # noqa: F401
import tsfm_public # noqa: F401
# Transformers does lazy-loading via __getattr__; touching
# PreTrainedModel forces the lazy-init to complete on the main
# thread. Otherwise FSM worker threads race the lazy loader and
# surface ModuleNotFoundError("Could not import module
# 'PreTrainedModel'") under load.
from transformers import PreTrainedModel # noqa: F401
# tsfm_public's TinyTimeMixerForPrediction import path triggers
# the granite-tsfm side of the lazy chain β pre-warm here too.
from tsfm_public import TinyTimeMixerForPrediction # noqa: F401
from tsfm_public.toolkit.get_model import get_model # noqa: F401
except Exception as e:
print(f"[startup] heavy-EO pre-import skipped: {e}", flush=True)
# Force-import every specialist module that does heavy ML at runtime
# so its module-level deps probe + lazy transformers chain runs on
# the main thread, deterministic order, before any FSM worker fans
# out. Modules whose deps genuinely aren't installed will set their
# own `_DEPS_OK = False` here and gracefully no-op at request time;
# what we're avoiding is the "_DEPS_OK = False because of an import
# race" failure mode that fired on the live PS-188 query.
for mod_path in (
"app.live.ttm_forecast",
"app.live.ttm_battery_surge",
"app.live.floodnet_forecast",
"app.context.gliner_extract",
"app.context.terramind_nyc",
"app.context.eo_chip_cache",
"app.flood_layers.prithvi_live",
):
try:
__import__(mod_path)
except Exception as e:
print(f"[startup] {mod_path} pre-import skipped: "
f"{type(e).__name__}: {e}", flush=True)
# Warm the TerraMind specialist so first per-query call is just
# the diffusion (~3 s), not model load (~30 s). No-ops if deps
# are missing on this deployment.
try:
from app.context import terramind_synthesis
terramind_synthesis.warm()
print("[startup] TerraMind ready", flush=True)
except Exception as e:
print(f"[startup] TerraMind warm skipped: {e}", flush=True)
@app.get("/api/debug/eo")
def api_debug_eo():
"""Diagnostic for the EO toolchain (Phase 1 + Phase 4) on HF Spaces.
Surfaces sys.path, PYTHONPATH, and per-module import status so we
can tell whether terratorch is actually findable from inside the
uvicorn process. Used to debug why the runtime --target install
appears to succeed in the entrypoint but isn't visible to the
FSM specialists at request time.
"""
import os
import sys
import traceback
from pathlib import Path
out = {
"python_executable": sys.executable,
"python_version": sys.version,
"PYTHONPATH": os.environ.get("PYTHONPATH"),
"PYTHONNOUSERSITE": os.environ.get("PYTHONNOUSERSITE"),
"HOME": os.environ.get("HOME"),
"sys.path": sys.path,
}
eo_dir = Path(os.environ.get("HOME", "/home/user")) / ".eo-pkgs"
out["eo_dir"] = str(eo_dir)
out["eo_dir_exists"] = eo_dir.exists()
if eo_dir.exists():
out["eo_dir_contents"] = sorted(p.name for p in eo_dir.iterdir())[:50]
out["modules"] = {}
for name in ("terratorch", "einops", "diffusers", "timm",
"rasterio", "planetary_computer", "pystac_client"):
try:
mod = __import__(name)
out["modules"][name] = {"ok": True,
"file": getattr(mod, "__file__", "?")}
except Exception as e:
out["modules"][name] = {"ok": False,
"err": f"{type(e).__name__}: {e}",
"tb": traceback.format_exc().splitlines()[-3:]}
return JSONResponse(out)
@app.get("/api/debug/vllm-direct")
def api_debug_vllm_direct():
"""Direct diagnostic: calls vLLM with a reconciler-style request,
bypassing LiteLLM Router, to surface the raw HTTP status and error."""
import traceback
import httpx
vllm_base = os.environ.get("RIPRAP_LLM_BASE_URL", "").rstrip("/")
vllm_key = os.environ.get("RIPRAP_LLM_API_KEY", "") or "EMPTY"
if not vllm_base:
return JSONResponse({"error": "RIPRAP_LLM_BASE_URL not set"}, status_code=400)
model_name = os.environ.get("RIPRAP_LLM_VLLM_8B_NAME", "granite4.1:3b")
# Two payloads: minimal (sanity check) and full-load (context overflow test).
# Generate a realistic 14-doc payload that approximates what the reconciler sends.
_FILLER_DOC = (
"Source: NYC OEM Sandy 2012 inundation. "
"This location is within the Sandy 2012 inundation zone, "
"which experienced flood depths of 1β4 ft. "
"FEMA Flood Zone AE. BFE 12 ft NAVD88."
)
full_docs = [
{"doc_id": f"doc_{i}", "text": f"[doc_{i}] " + _FILLER_DOC}
for i in range(14)
]
_LONG_SYSTEM = (
"Write a flood-exposure briefing for an NYC address. "
"Use ONLY the facts in the provided documents. "
"Every sentence that contains a number MUST include a citation tag. "
"Output the four sections: Status, History, Forecast, and Risk. "
"Valid document IDs: " + ", ".join(f"doc_{i}" for i in range(14)) + "."
) * 3 # ~500 tokens
payloads = {
"minimal": {
"model": model_name,
"messages": [
{"role": "system", "content": "You are a flood risk analyst."},
{"role": "user", "content": "Write the cited paragraph now."},
],
"max_tokens": 64,
"temperature": 0,
"stream": False,
"chat_template_kwargs": {"documents": [
{"doc_id": "noaa_tides", "text": "Tide: 4.14 ft MLLW."},
{"doc_id": "microtopo", "text": "Elevation: 1.37 m."},
]},
},
"full_load": {
"model": model_name,
"messages": [
{"role": "system", "content": _LONG_SYSTEM},
{"role": "user", "content": "Write the cited paragraph now."},
],
"max_tokens": 512,
"temperature": 0,
"stream": False,
"chat_template_kwargs": {"documents": full_docs},
},
}
results = {}
for name, payload in payloads.items():
try:
with httpx.Client(timeout=30.0) as c:
r = c.post(
f"{vllm_base}/chat/completions",
headers={"Authorization": f"Bearer {vllm_key}",
"Content-Type": "application/json"},
json=payload,
)
try:
body = r.json()
except Exception:
body = r.text[:300]
results[name] = {"status": r.status_code, "body_snippet": str(body)[:400]}
except Exception as e:
results[name] = {"error": str(e)}
return JSONResponse({
"model": model_name,
"vllm_base": vllm_base,
"results": results,
})
@app.get("/api/backend")
async def api_backend():
"""Live LLM-backend descriptor for the UI's hardware badge.
Returns the configured primary (vLLM/AMD or Ollama/local), plus a
quick reachability ping so the badge can show whether the primary is
actually answering or whether the Router is on the fallback path.
"""
import httpx
from app import llm
info = llm.backend_info()
reachable = None
try:
if info["primary"] in ("vllm", "mlx") and info["vllm_base_url"]:
url = info["vllm_base_url"].rstrip("/") + "/models"
async with httpx.AsyncClient(timeout=2.5) as client:
r = await client.get(url, headers={"Authorization": "Bearer ping"})
# vLLM and mlx_lm.server both return 200 on /v1/models when
# reachable; vLLM may return 401 with --api-key set. Either
# proves the server is up. Anything else = unreachable.
reachable = r.status_code in (200, 401)
else:
url = info["ollama_base_url"].rstrip("/") + "/api/tags"
async with httpx.AsyncClient(timeout=2.5) as client:
r = await client.get(url)
reachable = r.status_code == 200
except Exception:
reachable = False
info["reachable"] = reachable
info["effective_engine"] = (
info["engine"] if reachable
else (info.get("fallback_engine") or "offline")
)
return JSONResponse(info)
@app.get("/")
def index():
"""SvelteKit landing page (the new design-system UI)."""
sk = SVELTEKIT_BUILD / "index.html"
if sk.exists():
return FileResponse(sk)
return JSONResponse(
{"error": "sveltekit build not present β run `cd web/sveltekit && npm run build`"},
status_code=503,
)
@app.get("/q/sample")
def q_sample_page():
"""The prerendered Red Hook demo briefing (no SSE)."""
sk = SVELTEKIT_BUILD / "q" / "sample.html"
if sk.exists():
return FileResponse(sk)
return JSONResponse({"error": "sveltekit build not present"}, status_code=503)
@app.get("/q/{query_id}")
def q_query_page(query_id: str): # noqa: ARG001 β captured for the SPA router
"""Live briefing route. Served by the SvelteKit SPA fallback (200.html);
the client opens an EventSource to /api/agent/stream."""
sk = SVELTEKIT_BUILD / "200.html"
if sk.exists():
return FileResponse(sk)
return JSONResponse({"error": "sveltekit build not present"}, status_code=503)
@app.get("/print/{query_id}")
def print_page(query_id: str): # noqa: ARG001 β captured by the SPA router
"""Curated print artifact for a completed briefing. The client
hydrates from localStorage (key riprap:print:<query_id>) and
auto-fires window.print() β no backend round-trip."""
sk = SVELTEKIT_BUILD / "200.html"
if sk.exists():
return FileResponse(sk)
return JSONResponse({"error": "sveltekit build not present"}, status_code=503)
# Legacy custom-element bundle routes (/legacy, /single, /compare, /agent,
# /report, /register/*) were retired in v0.4.5 β the SvelteKit UI fully
# subsumes them. Static assets at /static/* still mount in case anything
# external embeds them, but the page-level routes are gone. Hitting them
# now returns the framework default 404.
@app.get("/api/register/{asset_class}")
def api_register(asset_class: str):
"""Return a pre-computed asset-class register."""
if asset_class not in ("schools", "nycha", "mta_entrances"):
return JSONResponse({"error": f"unknown asset class {asset_class!r}"},
status_code=404)
f = ROOT.parent / "data" / "registers" / f"{asset_class}.json"
if not f.exists():
script = f"scripts/build_{asset_class}_register.py"
return JSONResponse(
{"error": f"register not built β run python {script}",
"rows": []},
status_code=503,
)
return JSONResponse(_json.loads(f.read_text()),
headers={"Cache-Control": "public, max-age=300"})
@app.get("/api/compare")
async def compare_stream(a: str, b: str, request: Request):
"""Two parallel FSM runs, results returned as a single SSE stream.
Each event is tagged with side="a" or side="b" so the client can
route updates to the correct panel."""
import asyncio
import queue
from app.fsm import iter_steps
def gen_for_side(side: str, q_text: str, out_q):
try:
for ev in iter_steps(q_text):
ev["side"] = side
out_q.put(ev)
except Exception as e:
out_q.put({"side": side, "kind": "error", "err": str(e)})
out_q.put({"side": side, "kind": "_done"})
out_q: queue.Queue[dict] = queue.Queue()
def kick():
# run both sides in parallel threads β each Burr Application owns
# its own state so this is safe, and Ollama with NUM_PARALLEL=2
# serves both reconcile calls concurrently.
loop = asyncio.get_event_loop()
loop.run_in_executor(None, gen_for_side, "a", a, out_q)
loop.run_in_executor(None, gen_for_side, "b", b, out_q)
async def event_stream():
kick()
yield f"event: hello\ndata: {json.dumps({'a': a, 'b': b})}\n\n"
done = 0
while done < 2:
try:
ev = await asyncio.to_thread(out_q.get, True, 1.0)
except Exception:
continue
if ev.get("kind") == "_done":
done += 1
continue
if ev.get("kind") == "step":
yield f"event: step\ndata: {json.dumps(ev, default=str)}\n\n"
elif ev.get("kind") == "final":
yield f"event: final\ndata: {json.dumps(ev, default=str)}\n\n"
elif ev.get("kind") == "error":
yield f"event: error\ndata: {json.dumps(ev)}\n\n"
yield "event: done\ndata: {}\n\n"
return StreamingResponse(event_stream(), media_type="text/event-stream",
headers={"Cache-Control": "no-cache",
"X-Accel-Buffering": "no"})
@app.get("/api/stream")
async def stream(q: str, request: Request):
"""Server-sent-events stream: each FSM action yields one event."""
def gen():
try:
yield f"event: hello\ndata: {json.dumps({'query': q})}\n\n"
for ev in iter_steps(q):
if ev["kind"] == "step":
yield f"event: step\ndata: {json.dumps(ev, default=str)}\n\n"
else:
yield f"event: final\ndata: {json.dumps(ev, default=str)}\n\n"
yield "event: done\ndata: {}\n\n"
except Exception as e:
yield f"event: error\ndata: {json.dumps({'err': str(e)})}\n\n"
return StreamingResponse(gen(), media_type="text/event-stream",
headers={"Cache-Control": "no-cache",
"X-Accel-Buffering": "no"})
def _run_compare(p, raw_query: str, out_q, i_addr) -> dict:
"""Run the compare intent: execute the full single_address specialist
suite sequentially for each target, then merge the two paragraphs into
one Markdown document clearly labelled PLACE A and PLACE B.
Sequential execution is required because the FSM uses thread-local hooks
(set_strict_mode, set_token_callback) β concurrent runs on the same
thread would corrupt the hooks. See app/intents/single_address.py.
Step events from each target are forwarded to out_q tagged with a
`target_label` key so the trace UI can optionally group them, but the
existing trace UI ignores unknown keys gracefully."""
from app.intents import neighborhood as i_nbhd
from app.planner import Plan
addr_targets = [t for t in p.targets if t.get("type") in ("address", "nta")]
if len(addr_targets) < 2:
# Fallback: only one (or zero) address extracted β run as single_address
return i_addr.run(p, raw_query, progress_q=out_q, strict=True)
results = []
for idx, target in enumerate(addr_targets[:2]):
label = "PLACE A" if idx == 0 else "PLACE B"
addr_text = target["text"]
if out_q is not None:
# Wrap out_q to tag step events with the target label so the
# trace UI can optionally group them; token/mellea_attempt pass
# through untagged so the SvelteKit briefing buffer works.
_label = label
_q = out_q
class _TaggedQ:
def put(self, ev):
if ev.get("kind") == "step":
_q.put({**ev, "target_label": _label})
else:
_q.put(ev)
effective_q = _TaggedQ()
else:
effective_q = None
if target.get("type") == "nta":
sub_plan = Plan(
intent="neighborhood",
targets=[{"type": "nta", "text": addr_text}],
specialists=p.specialists,
rationale=p.rationale,
)
result = i_nbhd.run(sub_plan, addr_text, progress_q=effective_q, strict=True)
else:
sub_plan = Plan(
intent="single_address",
targets=[{"type": "address", "text": addr_text}],
specialists=p.specialists,
rationale=p.rationale,
)
result = i_addr.run(sub_plan, addr_text, progress_q=effective_q, strict=True)
results.append((label, addr_text, result))
# Merge: produce one paragraph with both place sections.
parts = []
for label, addr_text, res in results:
para = (res.get("paragraph") or "").strip()
parts.append(f"## {label}: {addr_text}\n\n{para}")
merged_paragraph = "\n\n---\n\n".join(parts)
# Combine Mellea metadata: sum attempts, union passed/failed.
def _merge_mellea(a, b):
def _lst(m, k): return m.get(k) or []
return {
"rerolls": (a.get("rerolls") or 0) + (b.get("rerolls") or 0),
"n_attempts": (a.get("n_attempts") or 0) + (b.get("n_attempts") or 0),
"requirements_passed": list(set(_lst(a, "requirements_passed")) & set(_lst(b, "requirements_passed"))),
"requirements_failed": list(set(_lst(a, "requirements_failed") + _lst(b, "requirements_failed"))),
"requirements_total": max(a.get("requirements_total") or 0, b.get("requirements_total") or 0),
}
mellea_a = results[0][2].get("mellea") or {}
mellea_b = results[1][2].get("mellea") or {}
# Spread Place A's full specialist state into the return dict so
# adaptFinalToFindings can build evidence cards (TTM, TerraMind, Prithvi,
# Sandy, etc.) from the higher-risk location. Place B's live-state data
# is available via targets[].state for future per-location card rendering.
# Without this, _run_compare returned only paragraph/mellea/intent/targets
# and all fine-tuned model cards were silently suppressed (state keys
# missing β card builders returned null).
out = {**results[0][2]}
out.update({
"paragraph": merged_paragraph,
"mellea": _merge_mellea(mellea_a, mellea_b),
"intent": "compare",
"targets": [
{"label": lbl, "address": addr, "state": res}
for lbl, addr, res in results
],
"tier": results[0][2].get("tier"),
})
return out
@app.get("/api/agent")
def api_agent(q: str):
"""Agentic endpoint: take a natural-language query, plan it via
Granite 4.1, dispatch to the appropriate intent module, return the
full result as JSON. The Plan is included so callers can see the
agent's routing decision.
All non-trivial reconciliation (single_address / neighborhood /
development_check) routes through Mellea-validated rejection
sampling against four grounding requirements. live_now stays on
streaming reconcile because outputs are short and the live signals
have low hallucination surface."""
from app.intents import development_check as i_dev
from app.intents import live_now as i_live
from app.intents import neighborhood as i_nbhd
from app.intents import single_address as i_addr
from app.planner import plan as run_planner
tracker = emissions.Tracker()
emissions.install(tracker)
try:
p = run_planner(q)
if p.intent == "not_implemented":
return JSONResponse({
"paragraph": p.rationale,
"mellea": {"rerolls": 0, "n_attempts": 0,
"requirements_passed": [], "requirements_failed": [],
"requirements_total": 0},
"status": "not_implemented",
"emissions": tracker.summarize(),
})
if p.intent == "compare":
out = _run_compare(p, q, None, i_addr)
elif p.intent == "development_check":
out = i_dev.run(p, q, strict=True)
elif p.intent == "neighborhood":
out = i_nbhd.run(p, q, strict=True)
elif p.intent == "live_now":
out = i_live.run(p, q)
else:
out = i_addr.run(p, q, strict=True)
out["emissions"] = tracker.summarize()
return JSONResponse(out)
finally:
emissions.install(None)
@app.get("/api/agent/stream")
async def api_agent_stream(q: str):
"""SSE: emit `plan` once the planner finishes, then a `step` event per
finalized specialist, then `final` with the full result. The intent
runs in a thread; we marshal events through a queue."""
import asyncio
import queue
out_q: queue.Queue[dict] = queue.Queue()
tracker = emissions.Tracker()
def runner():
emissions.install(tracker)
try:
import threading as _th
from app import llm as _llm
from app.intents import development_check as i_dev
from app.intents import live_now as i_live
from app.intents import neighborhood as i_nbhd
from app.intents import single_address as i_addr
from app.planner import plan as run_planner
def _on_plan_token(delta: str):
out_q.put({"kind": "plan_token", "delta": delta})
p = run_planner(q, on_token=_on_plan_token)
def _warmup_llm():
try:
_llm.chat(
model="granite-8b",
messages=[{"role": "user", "content": "hi"}],
options={"num_predict": 1, "temperature": 0},
stream=False,
)
except Exception:
pass
_th.Thread(target=_warmup_llm, daemon=True, name="riprap-warmup").start()
out_q.put({"kind": "plan",
"intent": p.intent,
"targets": p.targets,
"specialists": p.specialists,
"rationale": p.rationale})
if p.intent == "not_implemented":
final = {
"paragraph": p.rationale,
"mellea": {"rerolls": 0, "n_attempts": 0,
"requirements_passed": [],
"requirements_failed": [],
"requirements_total": 0},
"status": "not_implemented",
}
elif p.intent == "compare":
final = _run_compare(p, q, out_q, i_addr)
elif p.intent == "development_check":
final = i_dev.run(p, q, progress_q=out_q, strict=True)
elif p.intent == "neighborhood":
final = i_nbhd.run(p, q, progress_q=out_q, strict=True)
elif p.intent == "live_now":
final = i_live.run(p, q, progress_q=out_q)
else:
final = i_addr.run(p, q, progress_q=out_q, strict=True)
final["emissions"] = tracker.summarize()
out_q.put({"kind": "final", **final})
except Exception as e:
out_q.put({"kind": "error", "err": str(e)})
finally:
emissions.install(None)
out_q.put({"kind": "_done"})
async def event_stream():
loop = asyncio.get_event_loop()
loop.run_in_executor(None, runner)
yield f"event: hello\ndata: {json.dumps({'query': q})}\n\n"
# Stone-boundary envelope: track current Stone so we can wrap
# contiguous step events in stone_start / stone_done. step
# events whose name maps to None (geocode, rag, gliner) flow
# through without opening a Stone β those are orientation /
# ancillary, not part of any data-Stone group.
current_stone: str | None = None
stone_step_count: dict[str, int] = {}
def _open(stone: str) -> str:
stone_step_count[stone] = 0
payload = {**_STONE_META.get(stone, {"name": stone})}
return f"event: stone_start\ndata: {json.dumps(payload)}\n\n"
def _close(stone: str) -> str:
payload = {
**_STONE_META.get(stone, {"name": stone}),
"n_steps": stone_step_count.get(stone, 0),
}
return f"event: stone_done\ndata: {json.dumps(payload)}\n\n"
while True:
try:
ev = await asyncio.to_thread(out_q.get, True, 1.0)
except Exception:
# No event for 1 s β send an SSE comment so the HF Space
# proxy doesn't close the idle connection (proxy idle timeout
# is ~15-20 s; the reconciler's vLLM call can take longer).
yield ": keepalive\n\n"
continue
kind = ev.get("kind")
if kind == "_done":
break
# First reconcile token implies the data-Stones are done
# and the Capstone has begun, even if the FSM step event
# for reconcile hasn't fired yet (it fires AFTER the
# generation finishes). Open Capstone here so the UI
# shows it lighting up while tokens stream.
if kind == "token" and current_stone != "Capstone":
if current_stone is not None:
yield _close(current_stone)
current_stone = "Capstone"
yield _open(current_stone)
if kind == "step":
step_name = ev.get("step") or ""
stone = _STEP_TO_STONE.get(step_name)
if stone is not None:
if stone != current_stone:
if current_stone is not None:
yield _close(current_stone)
current_stone = stone
yield _open(current_stone)
stone_step_count[stone] = (
stone_step_count.get(stone, 0) + 1)
# `final` arrives after the Capstone has produced its
# paragraph. Close the Capstone before forwarding final
# so the trace cleanly reads: ... stone_done(Capstone),
# final, done.
if kind == "final" and current_stone is not None:
yield _close(current_stone)
current_stone = None
yield f"event: {kind}\ndata: {json.dumps(ev, default=str)}\n\n"
# Pipeline ended without a final (error / abort) β close any
# still-open Stone so the client doesn't render an unbounded
# parent row.
if current_stone is not None:
yield _close(current_stone)
yield "event: done\ndata: {}\n\n"
return StreamingResponse(event_stream(), media_type="text/event-stream",
headers={"Cache-Control": "no-cache",
"X-Accel-Buffering": "no"})
@app.get("/api/agent/plan")
def api_agent_plan(q: str):
"""Just the plan, no execution. Useful for showing the agent's routing
decision before running specialists."""
from app.planner import plan as run_planner
p = run_planner(q)
return JSONResponse({
"intent": p.intent,
"targets": p.targets,
"specialists": p.specialists,
"rationale": p.rationale,
})
@app.get("/api/layers/nta")
def layer_nta(code: str):
"""Return the NTA polygon for a given NTA code as GeoJSON (EPSG:4326)."""
from app.areas import nta as nta_mod
g = nta_mod.load()
sub = g[g["nta2020"] == code][["nta2020", "ntaname", "boroname", "geometry"]]
if sub.empty:
return JSONResponse({"type": "FeatureCollection", "features": []}, status_code=404)
return JSONResponse(_json.loads(sub.to_json()),
headers={"Cache-Control": "public, max-age=3600"})
@app.get("/api/layers/sandy_clipped")
def layer_sandy_clipped(code: str):
"""Sandy inundation polygons clipped to an NTA bbox + simplified.
Used by the agent map for neighborhood / development_check intents."""
from app.areas import nta as nta_mod
from app.flood_layers import sandy_inundation
poly = nta_mod.polygon_for(code)
if poly is None:
return JSONResponse({"type": "FeatureCollection", "features": []})
bounds = poly.bounds
cx, cy = (bounds[0] + bounds[2]) / 2, (bounds[1] + bounds[3]) / 2
# bbox half-extent in metres ~ half the polygon span Γ 111 km/deg
half_m = max((bounds[2] - bounds[0]), (bounds[3] - bounds[1])) / 2 * 111_000
return JSONResponse(_clip_simplify(sandy_inundation.load(), cy, cx, half_m * 1.2),
headers={"Cache-Control": "public, max-age=600"})
@app.get("/api/layers/dep_clipped")
def layer_dep_clipped(code: str, scenario: str = "dep_extreme_2080"):
"""DEP scenario polygons clipped to an NTA bbox + simplified."""
from app.areas import nta as nta_mod
from app.flood_layers import dep_stormwater
poly = nta_mod.polygon_for(code)
if poly is None:
return JSONResponse({"type": "FeatureCollection", "features": []})
bounds = poly.bounds
cx, cy = (bounds[0] + bounds[2]) / 2, (bounds[1] + bounds[3]) / 2
half_m = max((bounds[2] - bounds[0]), (bounds[3] - bounds[1])) / 2 * 111_000
return JSONResponse(_clip_simplify(dep_stormwater.load(scenario), cy, cx, half_m * 1.2,
props_keep={"Flooding_Category"}),
headers={"Cache-Control": "public, max-age=600"})
@app.get("/api/layers/sandy")
def layer_sandy(lat: float, lon: float, r: float = 1500):
key = ("sandy", round(lat, 4), round(lon, 4), int(r))
if key not in _LAYER_CACHE:
_LAYER_CACHE[key] = _clip_simplify(sandy_inundation.load(), lat, lon, r)
return JSONResponse(_LAYER_CACHE[key],
headers={"Cache-Control": "public, max-age=3600"})
@app.get("/api/layers/dep_extreme_2080")
def layer_dep_2080(lat: float, lon: float, r: float = 1500):
key = ("dep2080", round(lat, 4), round(lon, 4), int(r))
if key not in _LAYER_CACHE:
_LAYER_CACHE[key] = _clip_simplify(
dep_stormwater.load("dep_extreme_2080"),
lat, lon, r, props_keep={"Flooding_Category"})
return JSONResponse(_LAYER_CACHE[key],
headers={"Cache-Control": "public, max-age=3600"})
@app.get("/api/layers/prithvi_water")
def layer_prithvi_water(lat: float, lon: float, r: float = 1500):
"""Prithvi-EO 2.0 (Sen1Floods11) satellite water mask, clipped to a
bbox around the address for performance."""
key = ("prithvi", round(lat, 4), round(lon, 4), int(r))
if key not in _LAYER_CACHE:
from app.flood_layers import prithvi_water as pw
gdf, _meta = pw._load()
if gdf is None:
return JSONResponse({"type": "FeatureCollection", "features": []})
_LAYER_CACHE[key] = _clip_simplify(gdf, lat, lon, r,
props_keep=set(),
simplify_ft=4)
return JSONResponse(_LAYER_CACHE[key],
headers={"Cache-Control": "public, max-age=3600"})
@app.get("/api/layers/ida_hwm")
def layer_ida_hwm(lat: float, lon: float, r: float = 1500):
"""USGS Hurricane Ida 2021 high-water marks within radius_m of (lat, lon).
Returns GeoJSON FeatureCollection of Point features. No geopandas needed β
HWMs are already points so haversine filter is sufficient."""
from app.flood_layers import ida_hwm as _ida
features = []
for f in _ida._load():
flon, flat = f["geometry"]["coordinates"]
d = _ida._haversine_m(lat, lon, flat, flon)
if d <= r:
p = f["properties"]
features.append({
"type": "Feature",
"geometry": f["geometry"],
"properties": {
"hwm_id": p.get("hwm_id"),
"site_description": p.get("site_description"),
"elev_ft": p.get("elev_ft"),
"height_above_gnd_ft": p.get("height_above_gnd"),
"hwm_quality": p.get("hwm_quality"),
"waterbody": p.get("waterbody"),
"distance_m": round(d, 0),
},
})
return JSONResponse({"type": "FeatureCollection", "features": features},
headers={"Cache-Control": "public, max-age=3600"})
@app.get("/api/floodnet_near")
def floodnet_near(lat: float, lon: float, r: float = 1000):
sensors = floodnet.sensors_near(lat, lon, r)
ids = [s.deployment_id for s in sensors]
events = floodnet.flood_events_for(ids)
by_dep: dict = {}
for e in events:
by_dep.setdefault(e.deployment_id, []).append(e)
features = []
for s in sensors:
if s.lat is None or s.lon is None:
continue
evs = by_dep.get(s.deployment_id, [])
peak = max((e.max_depth_mm or 0 for e in evs), default=0)
features.append({
"type": "Feature",
"geometry": {"type": "Point", "coordinates": [s.lon, s.lat]},
"properties": {
"deployment_id": s.deployment_id,
"name": s.name,
"street": s.street,
"borough": s.borough,
"n_events_3y": len(evs),
"peak_depth_mm": peak,
},
})
return JSONResponse({"type": "FeatureCollection", "features": features})
|