- Video QC: Switch to Google Gemini direct video analysis as default (OpenAI frame grid fallback) - HM QC: Group reports by batch with collapsible sections, ZIP download per batch - HM QC: Generate asset thumbnails (150px) displayed in report listings - Speed: Remove artificial delays, add ThreadPoolExecutor(2) for parallel batch processing - Price detection: Improved prompt with country context, detect all prices, increased text limit - New Printer Check module: CSV-to-PDF cross-referencing ported from CrossMatch Rust app Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
427 B
Python
18 lines
427 B
Python
"""
|
|
Printer Check Module Blueprint.
|
|
|
|
Cross-references CSV order sheets against PDF folder structures
|
|
to identify matched, missing, and extra files per region/country.
|
|
"""
|
|
from flask import Blueprint
|
|
|
|
printer_check_bp = Blueprint(
|
|
'printer_check',
|
|
__name__,
|
|
template_folder='templates',
|
|
static_folder='static',
|
|
static_url_path='/printer-check/static',
|
|
url_prefix='/printer-check'
|
|
)
|
|
|
|
from . import routes
|