Private Beta
Background workers that run 24/7—listening for events, reading documents, running calculations, and updating your systems. Give them your guidelines in plain English. They do the rest, silently and continuously.
npm i @blend/autopilotUpload policies in plain English. Autopilot builds the agent.
import { Autopilot } from "@blend/autopilot"; const underwriter = new Autopilot({ name: "loan-underwriting-v1", guidelines: "./policies/underwriting-guidelines.pdf", guardrails: ["fair-lending", "ecoa-compliance"], }); // Autopilot reads any document type — W2, paystub, 1099, // bank statement, tax return, pay stub, offer letter... // Runs any calculation your guidelines describe. underwriter.on("application:received", async (app) => { return underwriter.evaluate(app); // → parses docs, calculates income, applies guidelines }); underwriter.deploy({ target: "your-vpc", canary: 0.05 });
import { Autopilot } from "@blend/autopilot"; const kyc = new Autopilot({ name: "kyc-aml-screening", guidelines: "./policies/kyc-procedures.pdf", guardrails: ["bsa-aml", "ofac-sdn", "pep-screening"], }); // Your compliance manual becomes the agent's logic. // Screens against OFAC, EU, UN sanctions automatically. kyc.on("customer:onboard", async (c) => { return kyc.evaluate(c); // → verifies identity, screens watchlists, returns risk }); kyc.deploy();
import { Autopilot } from "@blend/autopilot"; const docs = new Autopilot({ name: "document-verification", guidelines: "./policies/doc-requirements.pdf", guardrails: ["pii-redaction", "data-retention"], }); // Reads every document type: W2, paystub, 1099, bank // statement, tax return, offer letter, lease, P&L... docs.on("document:uploaded", async (doc) => { return docs.evaluate(doc); // → parses, classifies, extracts, verifies authenticity }); docs.deploy();
import { Autopilot } from "@blend/autopilot"; const fraud = new Autopilot({ name: "fraud-detection", guidelines: "./policies/fraud-rules.pdf", guardrails: ["fair-lending", "explainability"], latency: "realtime", // p99 < 200ms }); // Your fraud rules doc becomes real-time scoring logic. fraud.on("transaction:pending", async (txn) => { return fraud.evaluate(txn); // → scores risk, flags anomalies, explains decisions }); fraud.deploy({ replicas: 3 });
import { Autopilot } from "@blend/autopilot"; const reg = new Autopilot({ name: "regulatory-reporting", guidelines: "./policies/hmda-reporting-rules.pdf", guardrails: ["hmda", "trid", "reg-b"], schedule: "0 2 * * *", // Nightly 2 AM }); // Point it at your reporting requirements. // Autopilot generates compliant reports on schedule. reg.on("report:generate", async (period) => { return reg.evaluate(period); // → fetches data, builds HMDA report, validates, submits }); reg.deploy();
import { Autopilot } from "@blend/autopilot"; // Any workflow. Any document. Any calculation. // Just describe it in your guidelines. const agent = new Autopilot({ name: "rate-lock-agent", guidelines: "./policies/rate-lock-rules.pdf", guardrails: ["military-lending-act"], }); agent.on("rate:requested", async (req) => { return agent.evaluate(req); // → applies your pricing rules, checks MLA, locks rate }); agent.deploy({ canary: 0.1 });
Enterprise infrastructure for regulated financial services.
Fair Lending, BSA/AML, ECOA, HMDA, TRID—toggle on with a single config flag.
Income, DTI, LTV, cash flow—describe the formula in your guidelines and Autopilot runs it.
W2, paystub, 1099, bank statement, tax return, offer letter, lease, P&L—all parsed automatically.
Every decision logged with full reasoning. Examiner-ready reports on demand.
Prototype in our hosted sandbox. One config change deploys to your VPC—data never leaves your network.
Dashboards for accuracy, latency, cost, and model drift. Alerts on anomalies.
Subscribes to your events—new app, doc uploaded, status change. Evaluates against guidelines. Then acts: updates your LOS, triggers follow-ups, notifies stakeholders.
PDF sanitization strips hidden payloads. Prompt injection detection via ML + regex. Zero raw docs hit the model unsanitized.
Upload your guidelines. Test in our sandbox. Deploy to your infrastructure.
Join the private beta. Upload a PDF, get an agent.
npm i @blend/autopilot