Skip to main content

Verify

Accept or correct analysis results. Verification stores QA metadata for dashboard visibility; it does not promote models, change routes, or trigger optimizer side effects.

SDK

// Accept the result
await docex.verify(jobId, { accepted: true });

// Submit corrections
await docex.verify(jobId, {
  corrections: {
    legal_name: "ACME LOGISTICS LLC",
    license_no: "1019389"
  }
});

CLI

# Accept a result
docex verify job_abc123 --accept

# Submit corrections from a JSON file
docex verify job_abc123 --corrections corrections.json

# Interactive mode
docex verify job_abc123 --interactive

Stored metadata

Verification records the accepted/corrected result, notes, timestamp, and verifier context for run review.