NEWVectors or files. Pick a path.Start →
    Similar

    Document Intelligence Search

    Extract and search through PDFs, presentations, and documents. Combines OCR, layout analysis, and semantic search for comprehensive document retrieval.

    text
    image
    Multi-Tier
    from mixpeek import Mixpeek
    client = Mixpeek(api_key="YOUR_API_KEY")
    namespace = client.namespaces.create(name="doc-search")
    collection = client.collections.create(
    namespace_id=namespace.id,
    name="contracts",
    extractors=["pdf-extraction", "text-embedding-v2", "ocr"],
    chunk_strategy="page-based"
    )
    # Upload documents
    client.buckets.upload(
    collection_id=collection.id,
    url="s3://your-bucket/contracts/"
    )
    # Search with high BM25 weight for exact legal terms
    results = client.retrievers.execute(
    retriever_id=retriever.id,
    query="indemnification clause with liability cap"
    )

    Feature Extractors

    PDF Text Extraction

    Extract structured text and layout information from PDFs

    645K runs

    Retriever Stages

    rerank

    Rerank documents using cross-encoder models for accurate relevance

    sort

    Use Cases Using This Recipe

    Intermediate

    Insurance Claims Document Processing

    Extract structured data from claims documents, photos, and correspondence automatically

    70% reduction in manual document handling

    Adjuster data entry time

    Who It's For

    Insurance carriers, claims adjusters, and third-party administrators processing 1,000+ claims monthly across property, casualty, auto, and health lines

    Beginner

    Semantic Search for Knowledge Bases

    Find answers by meaning, not keywords, across your entire knowledge repository

    85% of queries answered on first search vs. 40% baseline

    First-search success rate

    Who It's For

    Knowledge management teams, internal documentation owners, customer support organizations, and EdTech platforms maintaining 10K+ articles, documents, and multimedia resources

    Intermediate

    Enterprise RAG Search

    Ask questions across all your enterprise data and get sourced, verifiable answers

    80% faster from question to answer

    Information retrieval time

    Who It's For

    Financial services firms, consulting organizations, legal teams, and enterprise knowledge workers who need to synthesize information across thousands of internal documents, reports, and presentations

    Advanced
    12 min

    Clinical NLP at Scale

    Extract structured intelligence from clinical notes, pathology reports, and medical records

    94% F1 on medical NER benchmarks

    Entity extraction accuracy

    Who It's For

    Healthcare IT teams, clinical informatics departments, and health systems processing thousands of clinical documents daily

    Related Recipes & Resources

    Explore these related resources to deepen your understanding and discover more powerful features

    Recipe

    BYO Embeddings Vector Search

    Bring pre-computed embeddings from any provider (OpenAI, Cohere, Together, etc.) and upsert them directly into MVS for instant vector search. No feature extractors, no pipelines -- just embeddings in, results out.

    Learn more
    Extractor

    PDF Text Extraction

    Extract structured text and layout information from PDFs

    Learn more
    Glossary

    OCR

    Optical Character Recognition

    Learn more
    Recipe

    Multimodal Hybrid Search Pipeline

    Combine vector search with keyword search (BM25) across text, images, and video for the most comprehensive multimodal retrieval system.

    Learn more
    Recipe

    Clinical Documentation Structuring

    Production-grade pipeline for ingesting clinical documents, scanned charts, EHR exports, wound photos, and therapy notes, and structuring them into coded fields aligned with MDS 3.0, PDPM, and CMS audit requirements. Combines OCR, clinical NER, taxonomy classification, and hybrid retrieval to turn unstructured bedside documentation into queryable, auditable data.

    Learn more
    Recipe

    Dense Search Over Your Own Embeddings, and What Hybrid Needs

    Upsert documents you embedded elsewhere into an MVS namespace and search them by raw vector through the features search endpoint. Hybrid BM25 plus dense is not part of a plain BYO upsert: the documents carry dense vectors only and no text index is created. If you want a lexical leg later, declare a TEXT payload index on the field when you create the namespace; this recipe shows that declaration and the dense search that works today.

    Learn more