Ship DeepSeek roadmap P0-5/P2 integrations.

Smoke simple_project offline, reviewer shortest_path, library promotion
gate, PDF drop logs, and per-stage cache hit-rate helper — without
touching Layout placement packing.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-12 15:48:39 +02:00
co-authored by Cursor
parent 2405093bbb
commit 30aaf55de6
11 changed files with 503 additions and 3 deletions
+10
View File
@@ -133,6 +133,16 @@ def render_pdf_page_jpegs(
return []
try:
total = len(doc)
omitted = [i + 1 for i in range(total) if i not in set(page_indices)]
if omitted:
log.info(
"PDF page images: %s rendering %d/%d pages; omitted e.g. %s",
pdf_path.name,
min(len(page_indices), max_pages),
total,
omitted[:12],
)
matrix = fitz.Matrix(zoom, zoom)
for i in page_indices:
if i < 0 or i >= len(doc):