nwhitehouse makes thousand-document reviews survive a closed laptop
The fork rebuilds its bulk document-review engine so a long run no longer dies when a tab closes, a connection times out, or the server restarts.
Running an AI review across a few documents is easy. Running it across five to ten thousand - the scale this fork is actually built for - is where the old approach broke. Everything ran inside a single live web request, so a closed browser tab, an idle connection, or a server hiccup mid-run wiped hours of work with nothing to resume from.
nwhitehouse swapped that for a proper job queue: every document is logged as its own task, work is handed out to background workers, and progress is saved as it goes. If a worker crashes, another picks up where it left off within minutes. You kick off a run, walk away, and check back on its status later - no babysitting the browser. Failed items are flagged automatically rather than disappearing.
Spotted something wrong? Or know the PR text has fresher detail than the writeup above?