Skip to main content
AwaitVerify is the paid managed product on top of awaithumans. You call one function, we route the document through a human reviewer (or your AI extractor, then a human), and your agent gets back a typed Pydantic instance.

Who AwaitVerify is for

Engineers building agents that have to read paper forms, handwritten tables, scanned IDs, multi-page contracts, claim PDFs, or any other document where an LLM alone is not safe enough yet. You wire verify_document(...) into your pipeline; the human review happens out-of-band; you get the typed result back as if it were a synchronous function call. The three flows we support, in one table: Flow details with code samples →

What makes it different from “just call an LLM”

  1. A real human is in the loop. Founder pool today, then platform reviewers as we scale. The human sees the document and the extraction side by side and corrects the cells that the model got wrong.
  2. Typed end-to-end. You hand us a Pydantic model. You get back an instance of that model. No JSON twiddling, no string parsing, no “did GPT hallucinate this field” doubt.
  3. Document never leaves your machine intact. The SDK fragments the document into masked views client-side and encrypts each fragment with AES-256-GCM before upload. The reviewer sees five partial views per page; the full document is reconstructable only inside your Python process. Security details →
  4. You pay per page reviewed, not per request. 0.80standard,0.80 standard, 1.60 Express. Failed tasks aren’t billed. Pricing →

Quickstart

Install the extras, set your API key, call verify_document. Five-minute walkthrough →

Multi-page documents

PDFs, multi-page TIFFs, and DOCX files with multiple pages all work. The SDK rasterizes each page at 300 DPI, fragments each page into five masked views, and uploads. The reviewer sees a per-page carousel and verifies the extraction across pages. Cap at v1: 100 pages per call. Billing is per page reviewed (page count after rasterization).

API key

Get your key from app.awaithumans.dev/keys. Set it as AWAITHUMANS_API_KEY, or pass an AwaitHumans client explicitly:

Where to go next

Quickstart

Install, first call, get a typed result back in five minutes.

The three flows

Flow A (human only), Flow B (model then human), Flow C (human then model).

Response schemas

Pydantic patterns including nested models and lists of objects.

Security model

Fragmentation, AES-256-GCM, the decrypt proxy, post-submit redaction.