Document Intelligence Search
Extract and search through PDFs, presentations, and documents. Combines OCR, layout analysis, and semantic search for comprehensive document retrieval.
from mixpeek import Mixpeekclient = 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 documentsclient.buckets.upload(collection_id=collection.id,url="s3://your-bucket/contracts/")# Search with high BM25 weight for exact legal termsresults = 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
Retriever Stages
rerank
Rerank documents using cross-encoder models for accurate relevance
Use Cases Using This Recipe
Insurance Claims Document Processing
Extract structured data from claims documents, photos, and correspondence automatically
70% reduction in manual document handling
Adjuster data entry time
Insurance carriers, claims adjusters, and third-party administrators processing 1,000+ claims monthly across property, casualty, auto, and health lines
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
Knowledge management teams, internal documentation owners, customer support organizations, and EdTech platforms maintaining 10K+ articles, documents, and multimedia resources
Enterprise RAG Search
Ask questions across all your enterprise data and get sourced, verifiable answers
80% faster from question to answer
Information retrieval time
Financial services firms, consulting organizations, legal teams, and enterprise knowledge workers who need to synthesize information across thousands of internal documents, reports, and presentations
Clinical NLP at Scale
Extract structured intelligence from clinical notes, pathology reports, and medical records
94% F1 on medical NER benchmarks
Entity extraction accuracy
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
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.
PDF Text Extraction
Extract structured text and layout information from PDFs
OCR
Optical Character Recognition
Multimodal Hybrid Search Pipeline
Combine vector search with keyword search (BM25) across text, images, and video for the most comprehensive multimodal retrieval system.
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.
Hybrid BM25 + Dense Vector Search
Use MVS hybrid search to combine BM25 keyword matching with dense vector similarity. Get the precision of exact keyword matches and the recall of semantic understanding in a single query.