File size: 18,501 Bytes
51720d8 436dbdd 14a9b91 89111aa 14a9b91 51720d8 436dbdd 14a9b91 2ad630b 14a9b91 51720d8 deb5a88 51720d8 a6a1bb9 436dbdd 2ad630b 55adaba a6a1bb9 deb5a88 c63fd20 51720d8 293ed8c deb5a88 293ed8c bac8db7 51720d8 2ad630b 293ed8c a86d9d6 2ad630b 293ed8c 89111aa 51720d8 a6a1bb9 51720d8 14a9b91 51720d8 14a9b91 51720d8 14a9b91 51720d8 14a9b91 51720d8 14a9b91 51720d8 14a9b91 79d9660 436dbdd 293ed8c 2ad630b 51720d8 deb5a88 293ed8c 2ad630b 436dbdd a6a1bb9 293ed8c a6a1bb9 2ad630b 293ed8c 51720d8 14a9b91 55adaba 14a9b91 55adaba c982278 14a9b91 c982278 14a9b91 c982278 55adaba 14a9b91 c982278 55adaba bac8db7 14a9b91 bac8db7 89111aa c982278 89111aa c982278 14a9b91 c982278 89111aa c982278 89111aa c982278 14a9b91 c982278 89111aa c982278 51720d8 bac8db7 51720d8 bac8db7 55adaba 51720d8 89111aa 51720d8 55adaba 89111aa 51720d8 c982278 3dfd032 14a9b91 9c0bd3b 14a9b91 89111aa 9c0bd3b 51720d8 9c0bd3b 14a9b91 9c0bd3b 14a9b91 51720d8 9c0bd3b bac8db7 3dfd032 89111aa a6a1bb9 14a9b91 a6a1bb9 bac8db7 14a9b91 9c0bd3b 89111aa a6a1bb9 89111aa 14a9b91 9c0bd3b bac8db7 89111aa 9c0bd3b a6a1bb9 89111aa a6a1bb9 51720d8 14a9b91 51720d8 a86d9d6 bac8db7 51720d8 bac8db7 55adaba 9c0bd3b da9b8a8 51720d8 c982278 51720d8 55adaba c63fd20 c982278 a86d9d6 c982278 89111aa c982278 deb5a88 51720d8 | 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 | """Gradio Server Mode backend for the Repair Guy Space.
A hands-busy mechanic's assistant: a page viewer driven by short requests. It
finds and points β it never writes answers. All ingestion happens offline via
scripts/index_modal.py; the Space only syncs the pre-indexed library and serves
turns.
Obvious nav (client) next/previous page, "page 412", back, next/previous
section: pure frontend state, no server call.
Everything else β /find, one ZeroGPU call (pipelines/agent_ask.py):
(ZeroGPU agent turn) MiniCPM5-1B (the text "brain") sees the conversation so
far, the table of contents, and the WHOLE text of the
page being viewed, and calls tools in a loop until a page
is shown β circle on the current page (MiniCPM-V grounds
the box), jump to a section, or search. Search is FUSED:
ColEmbed (visual store) shortlists pages, the 1B reranks
by their parsed text. Streamed as events; the UI shows
tool chips and the resulting page/circle, never model
prose. History is kept only to resolve references.
The table of contents is the manual's clean PDF-bookmark chapters plus a
per-request fuzzy shortlist of fine parse headings (core/sections.py).
UI architecture β this is NOT a gr.Blocks app. It runs in Gradio *Server Mode*
(`gradio.Server`, a FastAPI server with Gradio's engine: queueing, streaming
and β crucially β ZeroGPU auth). The Python pipelines below are exposed as
`@app.api` endpoints; the frontend is a fully custom single page (Tailwind +
Alpine, no build step) served from frontend/index.html, which calls those
endpoints with @gradio/client so the HF iframe auth headers ZeroGPU needs are
forwarded. The source PDFs are served straight from FastAPI at /pdf/<doc_id>.
Module layout:
models/colembed.py ColEmbed β search shortlist: page embeddings + MaxSim
models/minicpm_agent.py MiniCPM5-1B β the agent "brain": tool loop + rerank
models/minicpm.py MiniCPM-V β the "eyes": grounds the circle
models/nemotron_embed.py NemotronEmbed β parsed: dense chunk/query embeddings (ingest)
core/visual_store.py VisualStore β on-disk per-page token embeddings
core/parsed_store.py ParsedStore β chunks, embeddings, raw parsed pages
core/page_context.py whole-page β text for the agent's context
core/sections.py section index + fuzzy matching (TOC shortlist)
pipelines/agent_ask.py AgentPipeline β the agent find-and-point GPU turn
pipelines/mock_ask.py MockAskPipeline β local UI iteration (MOCK_MODELS=1)
frontend/index.html the custom UI
"""
import base64
import io
import logging
import os
import shutil
import time
import warnings
import gradio as gr
from fastapi.responses import FileResponse, HTMLResponse, Response
from huggingface_hub import snapshot_download
from core.constants import (
DEFAULT_TOP_K,
LIBRARY_DATASET_ID,
MAX_TOP_K,
MOCK_MODELS,
MOCK_PDF_DIR,
PARSED_SUBDIR,
PREINDEXED_DIR,
RENDER_DPI,
VISUAL_SUBDIR,
)
from core.pdf import pdf_outline, render_page_png
from core.sections import sections_from_chunks, top_sections
# gradio 6.17.3 (pinned β see README frontmatter) still uses starlette's old
# 422 constant, so every queue join emits a StarletteDeprecationWarning. Not
# ours to fix; silence it so the Space logs stay readable.
warnings.filterwarnings(
"ignore", message=r"'HTTP_422_UNPROCESSABLE_ENTITY' is deprecated"
)
logging.basicConfig(
level=logging.INFO, format="%(asctime)s %(levelname)s %(name)s | %(message)s"
)
logging.getLogger("httpx").setLevel(logging.WARNING) # logs every hub request
log = logging.getLogger("repairguy")
def _build_libraries():
"""(visual_store, parsed_store, agent_pipeline), constructed once at startup.
The agent path is FUSED: ColEmbed (visual store) supplies the search
shortlist, the parsed store supplies the page text the 1B reranks with and
the agent reasons over β so both stores are live at once.
In MOCK_MODELS mode a single PDF-folder mock backs both stores and no
GPU/model code is imported (those modules load CUDA at import). Otherwise the
real stores and the agent pipeline load β the models onto cuda here, in the
main process."""
if MOCK_MODELS:
from pipelines.mock_ask import MockAskPipeline, MockStore
store = MockStore()
print(f"β οΈ MOCK_MODELS β fake agent over PDFs in {MOCK_PDF_DIR}")
return store, store, MockAskPipeline()
from core.parsed_store import ParsedStore
from core.visual_store import VisualStore
from pipelines.agent_ask import AgentPipeline
return (
VisualStore(os.path.join(PREINDEXED_DIR, VISUAL_SUBDIR)),
ParsedStore(os.path.join(PREINDEXED_DIR, PARSED_SUBDIR)),
AgentPipeline(),
)
VISUAL_STORE, PARSED_STORE, PIPELINE = _build_libraries()
# method -> store, for the picker / pdf lookups. In mock both keys map to the
# one MockStore, so every mock manual reads as indexed under both methods.
_METHOD_STORES = {"visual": VISUAL_STORE, "parsed": PARSED_STORE}
def sync_library() -> None:
"""Pull pre-indexed manuals from the library dataset into /data.
A missing or empty dataset just means an empty library."""
if MOCK_MODELS: # mock library is the local PDF folder; nothing to sync
return
try:
snapshot_download(
LIBRARY_DATASET_ID, repo_type="dataset", local_dir=PREINDEXED_DIR
)
log.info("library synced from %s", LIBRARY_DATASET_ID)
except Exception as e:
log.warning("library dataset not synced (%s): %s", LIBRARY_DATASET_ID, e)
return
# PREINDEXED_DIR mirrors the dataset (one dir per method); prune top-level
# leftovers from the pre-method-prefix layout, which snapshot_download
# never deletes.
for entry in os.listdir(PREINDEXED_DIR):
path = os.path.join(PREINDEXED_DIR, entry)
if entry.startswith(".") or entry in (VISUAL_SUBDIR, PARSED_SUBDIR):
continue
if os.path.isdir(path) and os.path.isfile(os.path.join(path, "index.json")):
print(f"Pruning stale pre-migration doc dir: {entry}")
shutil.rmtree(path, ignore_errors=True)
sync_library()
def _manual_choices() -> list[dict]:
"""The manuals shown in the picker (doc ids are name slugs, so the same
manual lands on the same id in both stores). The fused agent needs BOTH
indexes; a manual missing one is tagged and the agent turn rejects it.
pages drives the viewer's page count."""
docs: dict[str, dict] = {}
for method, store in _METHOD_STORES.items():
for d in store.list_docs():
entry = docs.setdefault(
d["doc_id"], {"name": d["name"], "methods": set(), "pages": 0}
)
entry["methods"].add(method)
entry["pages"] = max(entry["pages"], d["pages"])
choices = []
for doc_id, info in sorted(docs.items(), key=lambda kv: kv[1]["name"].lower()):
label = info["name"]
if info["methods"] != {"visual", "parsed"}:
label += " β needs reindex"
choices.append({"value": doc_id, "label": label, "pages": info["pages"]})
return choices
def _pdf_path(doc_id: str) -> str | None:
"""The source PDF for a manual (kept identically in whichever store indexed
it β both copy doc.pdf at ingest)."""
for store in _METHOD_STORES.values():
if store.exists(doc_id):
return store.pdf_path(doc_id)
return None
# Two section views, both cached per doc and cleared on library re-sync:
# outline β the manual's own clean bookmark chapters (pdf_outline), the
# frontend's breadcrumb + next/previous-section navigation, and
# the always-shown part of the router's section list.
# headings β the fine-grained, noisy parse headings (1000+ for a big
# manual): far too many for a prompt, but a per-request fuzzy
# shortlist of them gives the router precise targets like
# "Brake System Bleeding β p.532".
# A visual-only manual with no PDF bookmarks has neither; section navigation
# then no-ops and the router works from the page image alone.
_OUTLINE_CACHE: dict[str, list[dict]] = {}
_HEADINGS_CACHE: dict[str, list[dict]] = {}
def _doc_outline(doc_id: str) -> list[dict]:
if doc_id not in _OUTLINE_CACHE:
if MOCK_MODELS:
_OUTLINE_CACHE[doc_id] = PARSED_STORE.sections(doc_id)
else:
path = _pdf_path(doc_id)
_OUTLINE_CACHE[doc_id] = pdf_outline(path) if path else []
return _OUTLINE_CACHE[doc_id]
def _doc_headings(doc_id: str) -> list[dict]:
if doc_id not in _HEADINGS_CACHE:
if MOCK_MODELS:
_HEADINGS_CACHE[doc_id] = PARSED_STORE.sections(doc_id)
elif PARSED_STORE.exists(doc_id):
_HEADINGS_CACHE[doc_id] = sections_from_chunks(PARSED_STORE.chunks(doc_id))
else:
_HEADINGS_CACHE[doc_id] = []
return _HEADINGS_CACHE[doc_id]
def _router_options(doc_id: str, request: str, max_total: int = 24) -> list[dict]:
"""The numbered section list shown to the router as [{title, page}]: the
clean chapters always, plus the fine headings best matching this request,
deduped by page. The router replies with a 1-based index into this list."""
options = [
{"title": s["title"], "page": s["page_start"]} for s in _doc_outline(doc_id)
]
seen = {o["page"] for o in options}
for s in top_sections(request, _doc_headings(doc_id), n=8):
if s["page"] not in seen:
options.append(s)
seen.add(s["page"])
return options[:max_total]
def _thumb_data_uri(img, width: int = 280) -> str:
"""A downscaled JPEG data URI for a rendered page, small enough to ship in
the JSON answer (cited-page thumbnails are decorative, not full-res)."""
img = img.convert("RGB")
if img.width > width:
img = img.resize((width, round(img.height * width / img.width)))
buf = io.BytesIO()
img.save(buf, format="JPEG", quality=80)
return "data:image/jpeg;base64," + base64.b64encode(buf.getvalue()).decode()
# ---------------------------------------------------------------------------
# Server Mode: API engine (ZeroGPU auth, queueing) with a custom frontend.
# ---------------------------------------------------------------------------
app = gr.Server()
@app.api(name="manuals")
def api_manuals() -> list[dict]:
"""The manual picker's options: [{value, label}]."""
return _manual_choices()
@app.api(name="refresh")
def api_refresh() -> list[dict]:
"""Re-sync the library dataset (incremental) and return the refreshed
picker options, so manuals indexed after boot show up without a restart."""
sync_library()
_OUTLINE_CACHE.clear()
_HEADINGS_CACHE.clear()
return _manual_choices()
@app.api(name="find")
def api_find(
request: str,
manual: str = "",
k: int = DEFAULT_TOP_K,
page: int = 0,
section: str = "",
pages: list = None,
history: list = None,
) -> dict: # the per-yield type: Server.api infers outputs from this annotation
"""One agent turn (one ZeroGPU call), streamed as events (see
pipelines/agent_ask.py for the protocol). page/section are what the viewer
currently shows (the agent's current page); history is the compact memory of
past turns ([{request, action}]) for resolving references.
Yields {type: status|step|tool_result|found|done|error, ...}; tool_result
galleries are converted to JSON-able thumbnails here, and the terminal `done`
carries elapsed/k. Soft errors so the frontend renders them as chips."""
request = (request or "").strip()
if not request:
yield {"type": "error", "error": "Tell me what to find."}
return
if not manual:
yield {"type": "error", "error": "Pick a manual first βοΈ"}
return
if not (VISUAL_STORE.exists(manual) and PARSED_STORE.exists(manual)):
yield {
"type": "error",
"error": "This manual needs reindexing β the assistant needs both the "
"visual and parsed indexes. Pick another manual, or re-run indexing.",
}
return
start = time.monotonic()
# `pages` = every page currently on the viewer (the two-page spread shows
# two); the agent reads them all and may circle on any. Falls back to the
# single `page` for older clients.
shown = [int(p) for p in (pages or []) if str(p).strip().isdigit()] or (
[int(page)] if page else []
)
viewer = {"page": int(page or 0), "section": str(section or ""), "pages": shown}
options = _router_options(manual, request)
log.info(
"find: manual=%s k=%s viewer=%s hist=%d opts=%d q=%r",
manual, k, viewer, len(history or []), len(options), request[:200],
)
try:
events = PIPELINE.run_find(
VISUAL_STORE, PARSED_STORE, request, [manual], int(k), options,
viewer, history,
)
for ev in events:
if ev.get("type") == "tool_result" and "gallery" in ev:
pages = [p for _, p in ev["page_refs"]]
yield {
"type": "tool_result",
"tool": ev["tool"],
"pages": pages,
"thumbnails": [
{"page": p, "src": _thumb_data_uri(img), "caption": cap}
for (img, cap), p in zip(ev["gallery"], pages)
],
}
elif ev.get("type") == "done":
elapsed = round(time.monotonic() - start, 1)
log.info("find: done in %.1fs (%s)", elapsed, ev.get("kind"))
yield {**ev, "elapsed": elapsed, "k": int(k)}
else:
yield ev
except ValueError as e:
log.warning("find: rejected β %s", e)
yield {"type": "error", "error": f"β οΈ {e}"}
except Exception as e:
log.exception("find: failed after %.1fs", time.monotonic() - start)
yield {"type": "error", "error": f"β οΈ Something went wrong: {e}"}
# --- custom FastAPI routes: serve the SPA and the source PDFs ---------------
_FRONTEND_DIR = os.path.join(os.path.dirname(__file__), "frontend")
@app.get("/")
def index():
"""Serve the single-page UI, injecting the small bit of server config the
frontend needs (default/max k) so it needs no extra round-trip on load."""
with open(os.path.join(_FRONTEND_DIR, "index.html")) as f:
html = f.read()
html = (
html.replace("__DEFAULT_K__", str(DEFAULT_TOP_K))
.replace("__MAX_K__", str(MAX_TOP_K))
# Cache-bust key for /page images: changing the render DPI changes the
# served page size, so it must change the URL too β otherwise a browser
# could keep an old-resolution page (cached up to a day) under the same
# URL while the grounding render uses the new size.
.replace("__PAGE_V__", str(RENDER_DPI))
)
return HTMLResponse(html)
@app.get("/media/{filename}")
def serve_media(filename: str):
"""Static frontend assets (logo etc.) from frontend/assets/."""
path = os.path.join(_FRONTEND_DIR, "assets", os.path.basename(filename))
if not os.path.isfile(path):
return Response(status_code=404)
return FileResponse(path)
# Self-hosted browser assets for the voice mode: Silero VAD (the always-on
# listener) + onnxruntime-web's wasm runtime, vendored under frontend/vendor/ so
# nothing on the listening path depends on a CDN. Pinned + immutable β long
# cache. Only known extensions are served, and the resolved path is confined to
# the vendor dir (no traversal).
_VENDOR_DIR = os.path.join(_FRONTEND_DIR, "vendor")
_VENDOR_MEDIA_TYPES = {
".js": "text/javascript",
".mjs": "text/javascript",
".wasm": "application/wasm",
".onnx": "application/octet-stream",
}
@app.get("/vendor/{path:path}")
def serve_vendor(path: str):
"""Vendored voice-mode assets (vad worklet/model + ort wasm runtime)."""
full = os.path.normpath(os.path.join(_VENDOR_DIR, path))
if not full.startswith(_VENDOR_DIR + os.sep) or not os.path.isfile(full):
return Response(status_code=404)
media_type = _VENDOR_MEDIA_TYPES.get(os.path.splitext(full)[1].lower())
if media_type is None:
return Response(status_code=404)
return FileResponse(
full,
media_type=media_type,
headers={"Cache-Control": "public, max-age=86400"},
)
@app.get("/pdf/{doc_id}")
def serve_pdf(doc_id: str):
"""A manual's source PDF (kept for direct download/open-in-tab; the viewer
pane shows /page images, not the PDF)."""
path = _pdf_path(doc_id)
if not path or not os.path.isfile(path):
return Response(status_code=404)
return FileResponse(
path, media_type="application/pdf", content_disposition_type="inline"
)
@app.get("/page/{doc_id}/{page}")
def serve_page(doc_id: str, page: int):
"""One manual page rendered to PNG at RENDER_DPI β the viewer pane's <img>
source. Cached long (immutable content β instant page flips); the URL
carries a ?v=RENDER_DPI cache key so a render-size change can't leave a
stale-resolution page under the same URL. The circle overlay sizes its
viewBox from the grounding render's dimensions (sent with the bbox), not
this image, so it stays aligned even if a cached page is a different size."""
path = _pdf_path(doc_id)
if not path or not os.path.isfile(path):
return Response(status_code=404)
try:
data = render_page_png(path, page)
except ValueError:
return Response(status_code=404)
return Response(
data,
media_type="image/png",
headers={"Cache-Control": "public, max-age=86400"},
)
@app.get("/sections/{doc_id}")
def serve_sections(doc_id: str):
"""The manual's clean chapter outline [{title, page_start, page_end}] β
drives the breadcrumb and next/previous-section navigation in the
frontend. Empty for a visual-only manual with no PDF bookmarks."""
return {"sections": _doc_outline(doc_id)}
if __name__ == "__main__":
app.launch()
|