NEWVectors or files. Pick a path.Start →
    Models/Document Analysis/numind/NuExtract3
    HFDocument StructureApache-2.0

    NuExtract3

    by numind

    Template-driven structured extraction from documents and images (VLM)

    10Kdl/month
    ~4B (Qwen3.5-4B base)params
    Identifiers
    Model ID
    numind/NuExtract3
    Feature URI
    mixpeek://document_extractor@v1/numind_nuextract3_v1

    Overview

    NuExtract 3 turns a vision-language model (built on Qwen3.5-4B) into a structured-extraction engine. Instead of returning free text, you hand it a schema — a JSON template describing the fields you want — and it fills that template from the input, whether the input is plain text or a document *image*. Because it sees the page, it reads scanned PDFs, invoices, forms, and screenshots directly, with no separate OCR stage, and it can also emit clean document-to-markdown.

    On Mixpeek, NuExtract 3 is the extraction step that converts messy documents into queryable structured records — pull line items, dates, parties, and amounts into typed fields, then filter and search them like any other metadata.

    Architecture

    Vision-language model fine-tuned from Qwen3.5-4B (~4B params) for template-conditioned extraction. Takes an image or text plus a JSON schema/example and generates the populated structure, with light reasoning before committing values. Multilingual; handles document images at native resolution (inherited from the Qwen vision encoder), so layout and figures are read directly rather than flattened to a text dump.

    Mixpeek SDK Integration

    import { Mixpeek } from "mixpeek";
    
    const mx = new Mixpeek({ apiKey: "API_KEY" });
    
    // Extract structured fields from document images at ingest
    const collection = await mx.collections.create({
      namespace_id: "my-namespace",
      collection_name: "invoices",
      source: { type: "bucket", bucket_ids: ["bkt_your_bucket"] },
      feature_extractor: {
        feature_extractor_name: "structured_extraction",
        version: "v1",
        parameters: { model_id: "numind/NuExtract3" },
      },
    });

    Capabilities

    • Schema/template-driven extraction — you define the fields, it fills them
    • Reads document images directly (scanned PDFs, invoices, forms) — no separate OCR step
    • Document-to-markdown conversion for clean downstream chunking
    • Multilingual extraction with reasoning before value assignment
    • Open weights (Apache-2.0), self-hostable

    Use Cases on Mixpeek

    Invoice and receipt processing: pull vendor, line items, totals, and dates into typed fields for search and filtering
    Form and contract intake: extract parties, effective dates, and clauses from scanned documents into structured records
    Document-to-markdown for RAG: normalize heterogeneous PDFs into clean markdown before chunking and embedding
    Agent tool-use: give an agent a schema and let it return structured JSON it can act on, not prose to re-parse

    Specification

    FrameworkHF
    Organizationnumind
    FeatureDocument Structure
    Outputstructure tokens
    Modalitiesdocument
    RetrieverSection Filter
    Parameters~4B (Qwen3.5-4B base)
    LicenseApache-2.0
    Downloads/mo10K

    Research Paper

    NuExtract 3 (NuMind) — model card

    arxiv.org

    Build a pipeline with NuExtract3

    Add this model to a processing pipeline alongside other extractors. Combine with retrieval stages for end-to-end search.

    Run on your data, free