File size: 16,366 Bytes
d2e48df 5de71b8 d2e48df 5de71b8 d2e48df 5de71b8 d2e48df | 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 | """Riprap end-to-end address test suite.
Drives `/api/agent/stream` against a curated set of NYC addresses and
asserts that every Stone fires (or fails to fire with a deterministic
reason), the briefing prose contains all four sections, Mellea
grounding passes within attempt budget, and no specialist crashes with
an internal-API error (PreTrainedModel ModuleNotFoundError, etc).
Designed to be runnable both locally (M3 β laptop) and against the
deployed HF Space. The remote ML stack on the AMD MI300X is the same in
both cases when the env is configured, so an address that passes here
is the same address the hackathon judges will see.
Usage:
.venv/bin/python scripts/probe_addresses.py
.venv/bin/python scripts/probe_addresses.py --base http://127.0.0.1:7860
.venv/bin/python scripts/probe_addresses.py \\
--base https://lablab-ai-amd-developer-hackathon-riprap-nyc.hf.space \\
--addresses "PS 188, Lower East Side"
.venv/bin/python scripts/probe_addresses.py --json outputs/probe_addresses.json
Exit code 0 if every address passes every assertion; 1 otherwise. CSV
goes to outputs/probe_addresses.csv; JSON dump (full payloads, useful
for the UI dev loop) optionally to --json.
"""
from __future__ import annotations
import argparse
import csv
import json
import sys
import time
from collections import defaultdict
from dataclasses import dataclass, field
from pathlib import Path
from typing import Any
from urllib.parse import quote
import httpx
# Curated probe set. Each entry exercises a different surface of the
# system; together they cover every Stone's specialists at least once.
DEFAULT_ADDRESSES: list[dict[str, Any]] = [
# Anchor each entry on a fully-qualified street address so the
# geocoder doesn't drift to a same-named landmark in another borough
# (e.g. there are several "PS 188" schools city-wide).
{
"query": "442 East Houston Street, Manhattan", # PS 188 LES
"intent": "single_address",
"expect_sandy": True, # in the empirical 2012 extent
"expect_311_ge": 1,
"borough": "Manhattan",
},
{
"query": "80 Pioneer Street, Brooklyn",
"intent": "single_address",
"expect_sandy": True, # Red Hook β canonical Sandy turf
"expect_311_ge": 1,
"borough": "Brooklyn",
},
{
"query": "100 Gold Street, Manhattan",
"intent": "single_address",
# Outside Sandy 2012; this is the negative-control address.
"expect_sandy": False,
"borough": "Manhattan",
},
{
"query": "Hollis, Queens",
"intent": "neighborhood",
"borough": "Queens",
},
{
"query": "Coney Island, Brooklyn",
"intent": "neighborhood",
# neighborhood intent doesn't surface a per-address sandy field
# in the final state β the briefing prose names the Sandy
# exposure narratively from RAG + DEP layers.
"borough": "Brooklyn",
},
]
@dataclass
class StoneSummary:
fired: int = 0
errored: int = 0
silent: int = 0
total_seen: int = 0
@dataclass
class RunResult:
query: str
elapsed_s: float = 0.0
intent: str | None = None
paragraph: str = ""
n_steps: int = 0
steps: list[dict[str, Any]] = field(default_factory=list)
final: dict[str, Any] = field(default_factory=dict)
attempts: list[dict[str, Any]] = field(default_factory=list)
stones: dict[str, StoneSummary] = field(default_factory=lambda: defaultdict(StoneSummary))
errors: list[str] = field(default_factory=list)
error_steps: list[str] = field(default_factory=list)
# Mapping mirrors web/sveltekit/src/lib/client/cardAdapter.ts:stoneForStep.
# Kept here so the probe doesn't need to read the bundled JS.
def _stone_for_step(step: str) -> str | None:
n = (step or "").lower()
if n in {"sandy_inundation", "dep_stormwater", "ida_hwm_2021",
"prithvi_eo_v2", "microtopo_lidar"}:
return "cornerstone"
if n in {"mta_entrance_exposure", "nycha_development_exposure",
"doe_school_exposure", "doh_hospital_exposure",
"terramind_synthesis", "terramind_buildings", "eo_chip_fetch"}:
return "keystone"
if n in {"floodnet", "nyc311", "nws_obs", "noaa_tides",
"prithvi_eo_live", "terramind_lulc"}:
return "touchstone"
if n in {"nws_alerts", "ttm_forecast", "ttm_311_forecast",
"floodnet_forecast", "ttm_battery_surge"}:
return "lodestone"
if n.startswith("reconcile") or n.startswith("mellea") or \
n in {"rag_granite_embedding", "gliner_extract"}:
return "capstone"
return None
def stream_one(query: str, base: str, timeout_s: float) -> RunResult: # TODO(cleanup): cc-grade-D (21)
"""Drive one SSE run, accumulate every event into a RunResult."""
url = f"{base}/api/agent/stream?q={quote(query)}"
res = RunResult(query=query)
t0 = time.time()
paragraph = ""
with httpx.stream("GET", url, timeout=timeout_s) as r:
r.raise_for_status()
ev = None
buf: list[str] = []
for line in r.iter_lines():
if line.startswith("event:"):
ev = line.split(":", 1)[1].strip()
elif line.startswith("data:"):
buf.append(line[5:].lstrip())
elif line == "":
if not (ev and buf):
ev = None
buf = []
continue
data = "\n".join(buf)
buf = []
try:
payload = json.loads(data)
except json.JSONDecodeError:
payload = {"_raw": data}
if ev == "plan":
res.intent = payload.get("intent")
elif ev == "step":
res.n_steps += 1
res.steps.append(payload)
stone = _stone_for_step(payload.get("step", ""))
if stone:
s = res.stones[stone]
s.total_seen += 1
if not payload.get("ok"):
s.errored += 1
res.error_steps.append(payload.get("step", ""))
elif payload.get("result") is None and payload.get("err") is None:
s.silent += 1
else:
s.fired += 1
elif ev == "token":
paragraph += payload.get("delta") or ""
elif ev == "mellea_attempt":
res.attempts.append(payload)
elif ev == "final":
res.final = payload
if isinstance(payload.get("paragraph"), str):
paragraph = payload["paragraph"]
elif ev == "error":
res.errors.append(str(payload.get("err") or payload))
ev = None
res.elapsed_s = round(time.time() - t0, 2)
res.paragraph = paragraph
return res
# ---- Assertions ----------------------------------------------------------
# Flag step-result errors that look like the local-fallback ModuleNotFoundError
# we just hardened against. If any address surfaces this string, the
# guard-rail regressed.
_ERROR_REGRESSIONS = (
"ModuleNotFoundError",
"Could not import module 'PreTrainedModel'",
)
# Briefing section headings the system prompt teaches Granite to emit.
# Granite's exact rendering varies per attempt β sometimes
# `**Status.**` on its own line, sometimes inline. We treat each section
# as present if its label appears at all (case-insensitive).
#
# The system prompt says "Omit any section whose supporting facts are
# absent from the documents" β so on a query with no RAG hits the
# Policy-context section is correctly skipped. We require Status +
# Empirical evidence + Modeled scenarios always; Policy context is
# best-effort.
_REQUIRED_HEADINGS = (
"Status",
"Empirical evidence",
"Modeled scenarios",
)
_OPTIONAL_HEADINGS = ("Policy context",)
def assert_run(spec: dict[str, Any], r: RunResult) -> list[str]: # TODO(cleanup): cc-grade-F (42)
"""Return a list of failures (empty list if the run passes)."""
fails: list[str] = []
if r.errors:
fails.append(f"stream errors: {r.errors}")
# Specialist regressions β the LOD-002/003/004 ModuleNotFoundError
# category. If any step result string contains those keywords we
# treat it as a hard regression of the pre-import hardening.
for step in r.steps:
err = step.get("err") or ""
for marker in _ERROR_REGRESSIONS:
if marker in str(err):
fails.append(
f"{step.get('step')}: {marker} regressed in step error"
)
# Intent classification.
expected_intent = spec.get("intent")
if expected_intent and r.intent and r.intent != expected_intent:
fails.append(f"intent={r.intent} expected {expected_intent}")
# Briefing presence.
if not r.paragraph or len(r.paragraph) < 200:
fails.append(f"briefing too short: {len(r.paragraph)} chars")
else:
para_lower = r.paragraph.lower()
for heading in _REQUIRED_HEADINGS:
if heading.lower() not in para_lower:
fails.append(f"briefing missing heading {heading!r}")
# Mellea grounding.
final = r.final or {}
m = final.get("mellea") or {}
passed = m.get("requirements_passed") or []
total = m.get("requirements_total") or 0
if total:
if len(passed) < total:
failed_names = ",".join(m.get("requirements_failed") or []) or "?"
fails.append(
f"mellea: only {len(passed)}/{total} grounding checks passed "
f"(failed: {failed_names})"
)
elif r.attempts:
last = r.attempts[-1]
if last.get("failed"):
fails.append(f"mellea: last attempt failed {last['failed']}")
# Stones β the per-stone requirement is intent-dependent. The
# single_address FSM fires every stone's specialists (Cornerstone /
# Keystone / Touchstone / Lodestone). The neighborhood and
# development_check intents have a smaller fixed surface that does
# not exercise the address-level register / live-now stones β they
# rely on RAG + a smaller set of specialists. So we only enforce
# the full Stone roster for single_address; for the others we just
# check Capstone fires (RAG / GLiNER / reconcile are universal).
intent = (r.intent or expected_intent or "single_address").lower()
if intent == "single_address":
for stone in ("cornerstone", "touchstone", "lodestone"):
s = r.stones.get(stone)
if not s or s.fired == 0:
fails.append(
f"{stone}: 0 specialists fired "
f"(saw {s.total_seen if s else 0})"
)
s = r.stones.get("keystone")
if not s or s.total_seen == 0:
fails.append("keystone: no specialists attempted")
s = r.stones.get("capstone")
if not s or s.fired == 0:
fails.append(
f"capstone: 0 fired β reconcile/rag/gliner step events missing "
f"(saw {s.total_seen if s else 0})"
)
# Spec-driven asserts (only meaningful for single_address β the
# neighborhood / development_check intents have no per-address
# sandy / 311 fields in the final state).
if intent == "single_address":
sandy_state = (final.get("sandy") is True)
if "expect_sandy" in spec:
want = spec["expect_sandy"]
if sandy_state is not want:
fails.append(f"sandy={sandy_state} expected {want}")
n311 = (final.get("nyc311") or {}).get("n") or 0
if "expect_311_ge" in spec and n311 < spec["expect_311_ge"]:
fails.append(f"nyc311={n311} expected >= {spec['expect_311_ge']}")
return fails
# ---- Entry point ---------------------------------------------------------
def main() -> int: # TODO(cleanup): cc-grade-D (28)
ap = argparse.ArgumentParser()
ap.add_argument("--base", default="http://127.0.0.1:7860",
help="Riprap server base URL")
ap.add_argument("--addresses", default="",
help="Pipe-separated subset of queries to run "
"(addresses themselves contain commas, so pipe is "
"the separator); default runs the full curated set")
ap.add_argument("--timeout", type=float, default=600.0)
ap.add_argument("--out", default="outputs/probe_addresses.csv")
ap.add_argument("--json", default="",
help="Optional path to dump full per-address JSON payload")
args = ap.parse_args()
if args.addresses:
wanted = {a.strip() for a in args.addresses.split("|") if a.strip()}
specs = [s for s in DEFAULT_ADDRESSES if s["query"] in wanted]
if not specs:
specs = [{"query": q} for q in wanted]
else:
specs = list(DEFAULT_ADDRESSES)
Path(args.out).parent.mkdir(parents=True, exist_ok=True)
summary_rows: list[dict[str, Any]] = []
full: list[dict[str, Any]] = []
all_pass = True
print(f"Probing {len(specs)} addresses against {args.base}")
print()
for i, spec in enumerate(specs, 1):
q = spec["query"]
print(f"[{i}/{len(specs)}] {q!r:50s}", end=" ", flush=True)
try:
r = stream_one(q, args.base, args.timeout)
except Exception as e:
print(f"STREAM ERROR: {type(e).__name__}: {e}")
summary_rows.append({"query": q, "ok": False,
"fails": f"stream raised: {e}"})
all_pass = False
continue
fails = assert_run(spec, r)
ok = not fails
all_pass &= ok
m = (r.final or {}).get("mellea") or {}
passed = m.get("requirements_passed") or []
rerolls = m.get("rerolls") if m.get("rerolls") is not None else \
(max(0, (m.get("n_attempts") or 1) - 1))
verdict = "PASS" if ok else "FAIL"
print(f"{verdict} {r.elapsed_s:6.1f}s "
f"steps={r.n_steps} prose={len(r.paragraph)}c "
f"mellea={len(passed)}/{m.get('requirements_total') or '?'} "
f"rerolls={rerolls}")
for f in fails:
print(f" - {f}")
summary_rows.append({
"query": q, "ok": ok, "elapsed_s": r.elapsed_s, "intent": r.intent,
"n_steps": r.n_steps,
"para_chars": len(r.paragraph),
"mellea_passed": len(passed),
"mellea_total": m.get("requirements_total") or 0,
"rerolls": rerolls,
"stones_fired": ",".join(
f"{k}={v.fired}" for k, v in sorted(r.stones.items())),
"stones_errored": ",".join(
f"{k}={v.errored}" for k, v in sorted(r.stones.items())
if v.errored),
"errored_steps": ",".join(r.error_steps),
"fails": " | ".join(fails),
})
full.append({
"spec": spec,
"elapsed_s": r.elapsed_s,
"intent": r.intent,
"paragraph": r.paragraph,
"stones": {k: vars(v) for k, v in r.stones.items()},
"mellea": m,
"attempts": r.attempts,
"errors": r.errors,
"error_steps": r.error_steps,
"fails": fails,
})
out_path = Path(args.out)
if summary_rows:
with out_path.open("w", newline="") as f:
w = csv.DictWriter(f, fieldnames=list(summary_rows[0].keys()))
w.writeheader()
w.writerows(summary_rows)
print(f"\nWrote {out_path}")
if args.json:
json_path = Path(args.json)
json_path.parent.mkdir(parents=True, exist_ok=True)
json_path.write_text(json.dumps(full, indent=2, default=str))
print(f"Wrote {json_path}")
print()
print("=" * 70)
print(f" {sum(1 for r in summary_rows if r.get('ok'))}/{len(summary_rows)} addresses passed")
print("=" * 70)
return 0 if all_pass else 1
if __name__ == "__main__":
sys.exit(main())
|